Home
last modified time | relevance | path

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

/linux-4.4.14/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.4.14/tools/iio/
Dlsiio.c37 static inline int check_postfix(const char *str, const char *postfix) in check_postfix() argument
39 return strlen(str) > strlen(postfix) && in check_postfix()
40 strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in check_postfix()
/linux-4.4.14/drivers/iio/
Dindustrialio-event.c333 char *postfix; in iio_device_add_event() local
340 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event()
345 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event()
348 if (postfix == NULL) in iio_device_add_event()
359 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event()
362 kfree(postfix); in iio_device_add_event()
Dindustrialio-core.c598 const char *postfix, in __iio_device_attr_init() argument
621 postfix); in __iio_device_attr_init()
626 postfix); in __iio_device_attr_init()
629 full_postfix = kstrdup(postfix, GFP_KERNEL); in __iio_device_attr_init()
634 postfix); in __iio_device_attr_init()
731 int __iio_add_chan_devattr(const char *postfix, in __iio_add_chan_devattr() argument
752 postfix, chan, in __iio_add_chan_devattr()
Diio_core.h23 int __iio_add_chan_devattr(const char *postfix,
/linux-4.4.14/arch/powerpc/include/asm/
Dbitops.h102 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
116 postfix \
/linux-4.4.14/kernel/trace/
Dtrace_events_filter.c124 struct list_head postfix; member
1105 INIT_LIST_HEAD(&ps->postfix); in parse_init()
1270 list_add_tail(&elt->list, &ps->postfix); in postfix_append_operand()
1286 list_add_tail(&elt->list, &ps->postfix); in postfix_append_op()
1295 while (!list_empty(&ps->postfix)) { in postfix_clear()
1296 elt = list_first_entry(&ps->postfix, struct postfix_elt, list); in postfix_clear()
1431 list_for_each_entry(elt, &ps->postfix, list) { in check_preds()
1463 list_for_each_entry(elt, &ps->postfix, list) { in count_preds()
1651 list_for_each_entry(elt, &ps->postfix, list) { in replace_preds()
/linux-4.4.14/Documentation/block/
Dqueue-sysfs.txt9 Files denoted with a RO postfix are readonly and the RW postfix means
/linux-4.4.14/drivers/misc/cxl/
Dfile.c454 struct device **chardev, char *postfix, char *desc, in cxl_add_chardev() argument
467 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
/linux-4.4.14/scripts/mod/
Dmodpost.c87 static inline bool strends(const char *str, const char *postfix) in strends() argument
89 if (strlen(str) < strlen(postfix)) in strends()
92 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in strends()
/linux-4.4.14/drivers/net/wireless/zd1211rw/
Dzd_usb.c228 const char* postfix) in get_fw_name() argument
233 postfix); in get_fw_name()
/linux-4.4.14/Documentation/locking/
Dww-mutex-design.txt61 _slow postfix.
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_gpu_error.c1077 erq->tail = request->postfix; in i915_gem_record_rings()
Di915_gem.c1424 request->ringbuf->last_retired_head = request->postfix; in i915_gem_request_retire()
2585 request->postfix = intel_ring_get_tail(ringbuf); in __i915_add_request()
Dintel_lrc.c696 space = __intel_ring_space(target->postfix, ringbuf->tail, in logical_ring_wait_for_space()
Di915_drv.h2216 u32 postfix; member
Dintel_ringbuffer.c2218 space = __intel_ring_space(request->postfix, ringbuf->tail, in ring_wait_for_space()
/linux-4.4.14/Documentation/
DCodingStyle217 no space before the postfix increment & decrement unary operators:
/linux-4.4.14/Documentation/scsi/
DChangeLog.lpfc58 - remove typecast for constants - a U postfix marks them