/Linux-v4.19/drivers/firmware/broadcom/ |
D | bcm47xx_sprom.c | 35 static void create_key(const char *prefix, const char *postfix, in create_key() argument 38 if (prefix && postfix) in create_key() 39 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 42 else if (postfix) in create_key() 43 snprintf(buf, len, "%s%s", name, postfix); in create_key() 48 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 54 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 58 create_key(NULL, postfix, name, key, sizeof(key)); in get_nvram_var() 66 const char *postfix, const char *name, \ 73 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
/Linux-v4.19/tools/iio/ |
D | lsiio.c | 37 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-v4.19/drivers/clk/ti/ |
D | adpll.c | 183 const char *postfix) in ti_adpll_clk_get_name() argument 200 strlen(postfix), GFP_KERNEL); in ti_adpll_clk_get_name() 203 sprintf(buf, "%08lx.%s.%s", d->pa, base_name, postfix); in ti_adpll_clk_get_name() 217 const char *postfix = NULL; in ti_adpll_setup_clock() local 224 postfix = strrchr(name, '.'); in ti_adpll_setup_clock() 225 if (postfix && strlen(postfix) > 1) { in ti_adpll_setup_clock() 226 if (strlen(postfix) > ADPLL_MAX_CON_ID) in ti_adpll_setup_clock() 229 snprintf(con_id, 16, "pll%03lx%s", d->pa & 0xfff, postfix + 1); in ti_adpll_setup_clock() 501 const char *postfix; in ti_adpll_init_dco() local 512 postfix = "dco"; in ti_adpll_init_dco() [all …]
|
/Linux-v4.19/drivers/iio/ |
D | industrialio-event.c | 354 char *postfix; in iio_device_add_event() local 361 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event() 366 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event() 369 if (postfix == NULL) in iio_device_add_event() 380 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event() 383 kfree(postfix); in iio_device_add_event()
|
D | iio_core.h | 23 int __iio_add_chan_devattr(const char *postfix,
|
D | industrialio-core.c | 898 const char *postfix, in __iio_device_attr_init() argument 921 postfix); in __iio_device_attr_init() 926 postfix); in __iio_device_attr_init() 929 full_postfix = kstrdup(postfix, GFP_KERNEL); in __iio_device_attr_init() 934 postfix); in __iio_device_attr_init() 1031 int __iio_add_chan_devattr(const char *postfix, in __iio_add_chan_devattr() argument 1052 postfix, chan, in __iio_add_chan_devattr()
|
/Linux-v4.19/drivers/bluetooth/ |
D | btrtl.h | 63 const char *postfix); 76 const char *postfix) in btrtl_initialize() argument
|
D | btrtl.c | 511 const char *postfix) in btrtl_initialize() argument 569 if (postfix) { in btrtl_initialize() 571 btrtl_dev->ic_info->cfg_name, postfix); in btrtl_initialize()
|
/Linux-v4.19/tools/perf/util/ |
D | data.c | 151 const char *postfix, in perf_data__switch() argument 162 if (asprintf(&new_filepath, "%s.%s", data->file.path, postfix) < 0) in perf_data__switch()
|
D | data.h | 64 const char *postfix,
|
/Linux-v4.19/arch/powerpc/include/asm/ |
D | bitops.h | 115 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument 129 postfix \
|
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | i915_request.c | 328 tail = request->postfix; in advance_ring() 540 request->ring->vaddr + request->postfix); in __i915_request_submit() 1032 if (rq->postfix < head) { in i915_request_skip() 1036 memset(vaddr + head, 0, rq->postfix - head); in i915_request_skip() 1081 request->postfix = intel_ring_offset(request, cs); in i915_request_add()
|
D | i915_request.h | 145 u32 postfix; member
|
D | intel_ringbuffer.c | 562 if (rq->postfix < head) { in skip_request() 567 memset32(vaddr + head, MI_NOOP, (rq->postfix - head) / sizeof(u32)); in skip_request() 1773 if (bytes <= __intel_ring_space(target->postfix, in wait_for_space()
|
D | intel_engine_cs.c | 1421 rq->head, rq->postfix, rq->tail, in print_request_ring()
|
D | i915_gpu_error.c | 1500 ee->rq_post = request->postfix; in gem_record_rings()
|
D | intel_lrc.c | 1961 request->ring->head = intel_ring_wrap(request->ring, request->postfix); in execlists_reset()
|
/Linux-v4.19/Documentation/block/ |
D | queue-sysfs.txt | 9 Files denoted with a RO postfix are readonly and the RW postfix means
|
/Linux-v4.19/drivers/misc/cxl/ |
D | file.c | 569 struct device **chardev, char *postfix, char *desc, in cxl_add_chardev() argument 582 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
|
/Linux-v4.19/scripts/mod/ |
D | modpost.c | 91 static inline bool strends(const char *str, const char *postfix) in strends() argument 93 if (strlen(str) < strlen(postfix)) in strends() 96 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in strends()
|
/Linux-v4.19/tools/perf/ |
D | builtin-record.c | 1194 const char *postfix = rec->timestamp_filename ? in __cmd_record() local 1205 data->file.path, postfix, samples); in __cmd_record()
|
/Linux-v4.19/drivers/net/wireless/zydas/zd1211rw/ |
D | zd_usb.c | 228 const char* postfix) in get_fw_name() argument 233 postfix); in get_fw_name()
|
/Linux-v4.19/Documentation/locking/ |
D | ww-mutex-design.txt | 79 These functions have the _slow postfix.
|
/Linux-v4.19/Documentation/media/uapi/v4l/ |
D | dev-subdev.rst | 345 Actual targets (without a postfix) reflect the actual hardware
|
/Linux-v4.19/Documentation/process/ |
D | coding-style.rst | 261 no space before the postfix increment & decrement unary operators::
|