Home
last modified time | relevance | path

Searched refs:postfix (Results 1 – 18 of 18) sorted by relevance

/linux-4.1.27/arch/mips/bcm47xx/
Dsprom.c33 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/
Dlsiio.c39 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/
Dindustrialio-event.c325 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()
Dindustrialio-core.c574 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()
Diio_core.h23 int __iio_add_chan_devattr(const char *postfix,
/linux-4.1.27/arch/powerpc/include/asm/
Dbitops.h102 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
116 postfix \
/linux-4.1.27/kernel/trace/
Dtrace_events_filter.c124 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/
Dqueue-sysfs.txt9 Files denoted with a RO postfix are readonly and the RW postfix means
/linux-4.1.27/drivers/misc/cxl/
Dfile.c400 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/
Dmodpost.c86 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/
Dzd_usb.c228 const char* postfix) in get_fw_name() argument
233 postfix); in get_fw_name()
/linux-4.1.27/Documentation/locking/
Dww-mutex-design.txt61 _slow postfix.
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_gpu_error.c1066 erq->tail = request->postfix; in i915_gem_record_rings()
Di915_gem.c2370 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()
Di915_drv.h2062 u32 postfix; member
Dintel_ringbuffer.c2070 if (__intel_ring_space(request->postfix, ringbuf->tail, in intel_ring_wait_request()
/linux-4.1.27/Documentation/
DCodingStyle217 no space before the postfix increment & decrement unary operators:
/linux-4.1.27/Documentation/scsi/
DChangeLog.lpfc58 - remove typecast for constants - a U postfix marks them