/linux-4.1.27/arch/mips/bcm47xx/ |
D | sprom.c | 33 static void create_key(const char *prefix, const char *postfix, in create_key() argument 36 if (prefix && postfix) in create_key() 37 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 40 else if (postfix) in create_key() 41 snprintf(buf, len, "%s%s", name, postfix); in create_key() 46 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 52 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 56 create_key(NULL, postfix, name, key, sizeof(key)); in get_nvram_var() 64 const char *postfix, const char *name, \ 71 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
/linux-4.1.27/tools/iio/ |
D | lsiio.c | 39 static inline int check_postfix(const char *str, const char *postfix) in check_postfix() argument 41 return strlen(str) > strlen(postfix) && in check_postfix() 42 strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in check_postfix()
|
/linux-4.1.27/drivers/iio/ |
D | industrialio-event.c | 325 char *postfix; in iio_device_add_event() local 332 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event() 337 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event() 340 if (postfix == NULL) in iio_device_add_event() 351 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event() 354 kfree(postfix); in iio_device_add_event()
|
D | industrialio-core.c | 574 const char *postfix, in __iio_device_attr_init() argument 597 postfix); in __iio_device_attr_init() 602 postfix); in __iio_device_attr_init() 605 full_postfix = kstrdup(postfix, GFP_KERNEL); in __iio_device_attr_init() 610 postfix); in __iio_device_attr_init() 707 int __iio_add_chan_devattr(const char *postfix, in __iio_add_chan_devattr() argument 728 postfix, chan, in __iio_add_chan_devattr()
|
D | iio_core.h | 23 int __iio_add_chan_devattr(const char *postfix,
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | bitops.h | 102 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument 116 postfix \
|
/linux-4.1.27/kernel/trace/ |
D | trace_events_filter.c | 124 struct list_head postfix; member 1054 INIT_LIST_HEAD(&ps->postfix); in parse_init() 1219 list_add_tail(&elt->list, &ps->postfix); in postfix_append_operand() 1235 list_add_tail(&elt->list, &ps->postfix); in postfix_append_op() 1244 while (!list_empty(&ps->postfix)) { in postfix_clear() 1245 elt = list_first_entry(&ps->postfix, struct postfix_elt, list); in postfix_clear() 1380 list_for_each_entry(elt, &ps->postfix, list) { in check_preds() 1412 list_for_each_entry(elt, &ps->postfix, list) { in count_preds() 1600 list_for_each_entry(elt, &ps->postfix, list) { in replace_preds()
|
/linux-4.1.27/Documentation/block/ |
D | queue-sysfs.txt | 9 Files denoted with a RO postfix are readonly and the RW postfix means
|
/linux-4.1.27/drivers/misc/cxl/ |
D | file.c | 400 struct device **chardev, char *postfix, char *desc, in cxl_add_chardev() argument 413 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
|
/linux-4.1.27/scripts/mod/ |
D | modpost.c | 86 static inline bool strends(const char *str, const char *postfix) in strends() argument 88 if (strlen(str) < strlen(postfix)) in strends() 91 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in strends()
|
/linux-4.1.27/drivers/net/wireless/zd1211rw/ |
D | zd_usb.c | 228 const char* postfix) in get_fw_name() argument 233 postfix); in get_fw_name()
|
/linux-4.1.27/Documentation/locking/ |
D | ww-mutex-design.txt | 61 _slow postfix.
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_gpu_error.c | 1066 erq->tail = request->postfix; in i915_gem_record_rings()
|
D | i915_gem.c | 2370 request->postfix = intel_ring_get_tail(ringbuf); in __i915_add_request() 2687 request->ringbuf->last_retired_head = request->postfix; in i915_gem_retire_requests_ring()
|
D | i915_drv.h | 2062 u32 postfix; member
|
D | intel_ringbuffer.c | 2070 if (__intel_ring_space(request->postfix, ringbuf->tail, in intel_ring_wait_request()
|
/linux-4.1.27/Documentation/ |
D | CodingStyle | 217 no space before the postfix increment & decrement unary operators:
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.lpfc | 58 - remove typecast for constants - a U postfix marks them
|