Home
last modified time | relevance | path

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

12

/Linux-v4.19/drivers/firmware/broadcom/
Dbcm47xx_sprom.c35 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/
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-v4.19/drivers/clk/ti/
Dadpll.c183 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/
Dindustrialio-event.c354 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()
Diio_core.h23 int __iio_add_chan_devattr(const char *postfix,
Dindustrialio-core.c898 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/
Dbtrtl.h63 const char *postfix);
76 const char *postfix) in btrtl_initialize() argument
Dbtrtl.c511 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/
Ddata.c151 const char *postfix, in perf_data__switch() argument
162 if (asprintf(&new_filepath, "%s.%s", data->file.path, postfix) < 0) in perf_data__switch()
Ddata.h64 const char *postfix,
/Linux-v4.19/arch/powerpc/include/asm/
Dbitops.h115 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
129 postfix \
/Linux-v4.19/drivers/gpu/drm/i915/
Di915_request.c328 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()
Di915_request.h145 u32 postfix; member
Dintel_ringbuffer.c562 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()
Dintel_engine_cs.c1421 rq->head, rq->postfix, rq->tail, in print_request_ring()
Di915_gpu_error.c1500 ee->rq_post = request->postfix; in gem_record_rings()
Dintel_lrc.c1961 request->ring->head = intel_ring_wrap(request->ring, request->postfix); in execlists_reset()
/Linux-v4.19/Documentation/block/
Dqueue-sysfs.txt9 Files denoted with a RO postfix are readonly and the RW postfix means
/Linux-v4.19/drivers/misc/cxl/
Dfile.c569 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/
Dmodpost.c91 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/
Dbuiltin-record.c1194 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/
Dzd_usb.c228 const char* postfix) in get_fw_name() argument
233 postfix); in get_fw_name()
/Linux-v4.19/Documentation/locking/
Dww-mutex-design.txt79 These functions have the _slow postfix.
/Linux-v4.19/Documentation/media/uapi/v4l/
Ddev-subdev.rst345 Actual targets (without a postfix) reflect the actual hardware
/Linux-v4.19/Documentation/process/
Dcoding-style.rst261 no space before the postfix increment & decrement unary operators::

12