Searched refs:pfx (Results 1 - 25 of 75) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/include/libavutil/
H A Davstring.h27 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
31 * @param pfx prefix to test
35 int av_strstart(const char *str, const char *pfx, const char **ptr);
38 * Return non-zero if pfx is a prefix of str independent of case. If
43 * @param pfx prefix to test
47 int av_stristart(const char *str, const char *pfx, const char **ptr);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dtmpdir.h26 extern int path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, bool try_tmpdir);
H A Dtmpdir.c78 path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, argument
84 if (!pfx || !pfx[0])
86 pfx = "file";
91 plen = strlen (pfx);
123 /* check we have room for "${dir}/${pfx}XXXXXX\0" */
130 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
H A Dtempname.c124 __path_search (char *tmpl, size_t tmpl_len, const char *dir, const char *pfx, argument
130 if (!pfx || !pfx[0])
132 pfx = "file";
137 plen = strlen (pfx);
169 /* check we have room for "${dir}/${pfx}XXXXXX\0" */
176 sprintf (tmpl, "%.*s/%.*sXXXXXX", (int) dlen, dir, (int) plen, pfx);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Davstring.c29 int av_strstart(const char *str, const char *pfx, const char **ptr) argument
31 while (*pfx && *pfx == *str) {
32 pfx++;
35 if (!*pfx && ptr)
37 return !*pfx;
40 int av_stristart(const char *str, const char *pfx, const char **ptr) argument
42 while (*pfx && toupper((unsigned)*pfx) == toupper((unsigned)*str)) {
43 pfx
[all...]
H A Davstring.h33 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
37 * @param pfx prefix to test
41 int av_strstart(const char *str, const char *pfx, const char **ptr);
44 * Return non-zero if pfx is a prefix of str independent of case. If
49 * @param pfx prefix to test
53 int av_stristart(const char *str, const char *pfx, const char **ptr);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/coreutils/
H A Dsplit.c62 char *pfx; local
97 pfx = xasprintf("%s%s", sfx, char_p);
111 if (!pfx)
113 xmove_fd(xopen(pfx, O_WRONLY | O_CREAT | O_TRUNC), 1);
114 pfx = next_file(pfx, suffix_len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dr4kcache.h343 #define __BUILD_BLAST_CACHE(pfx, desc, indexop, hitop, lsize) \
344 static inline void blast_##pfx##cache##lsize(void) \
353 __##pfx##flush_prologue \
359 __##pfx##flush_epilogue \
362 static inline void blast_##pfx##cache##lsize##_page(unsigned long page) \
367 __##pfx##flush_prologue \
374 __##pfx##flush_epilogue \
377 static inline void blast_##pfx##cache##lsize##_page_indexed(unsigned long page) \
387 __##pfx##flush_prologue \
393 __##pfx##flush_epilogu
[all...]
H A Dio.h304 #define __BUILD_MEMORY_SINGLE(pfx, bwlq, type, irq) \
306 static inline void pfx##write##bwlq(type val, \
316 __val = pfx##ioswab##bwlq(__mem, val); \
342 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \
371 return pfx##ioswab##bwlq(__mem, __val); \
374 #define __BUILD_IOPORT_SINGLE(pfx, bwlq, type, p, slow) \
376 static inline void pfx##out##bwlq##p(type val, unsigned long port) \
385 __val = pfx##ioswab##bwlq(__addr, val); \
394 static inline type pfx##in##bwlq##p(unsigned long port) \
406 return pfx##ioswa
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dhuffman.c34 static void get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, Node *nodes, int node, uint32_t pfx, int pl, int *pos, int no_zero_count) argument
40 bits[*pos] = pfx;
45 pfx <<= 1;
47 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0, pfx, pl, pos,
49 pfx |= 1;
50 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0+1, pfx, pl, pos,
H A Dvp56dsp.c57 #define VP56_EDGE_FILTER(pfx, suf, pix_inc, line_inc) \
58 static void pfx##_edge_filter_##suf(uint8_t *yuv, int stride, int t) \
65 v = pfx##_adjust(v, t); \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/ip/
H A Dipprefix.c75 struct in6_addr *pfx; local
78 pfx = (struct in6_addr *)RTA_DATA(tb[PREFIX_ADDRESS]);
81 fprintf(fp, "%s", rt_addr_n2a(family, sizeof(*pfx), pfx,
H A Difcfg87 pfx="$ipaddr peer $peer"
93 pfx="$ipaddr/$pfxlen"
101 ip addr del $pfx dev $dev $label || exit 1
118 if ! ip address add $pfx brd + dev $dev $label; then
119 echo "Error: failed to add $pfx on $dev." 1>&2
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/networking/libiproute/
H A Dll_addr.c47 inet_prefix pfx; local
48 if (get_addr_1(&pfx, arg, AF_INET)) {
55 memcpy(lladdr, pfx.data, 4);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dbtree-type.h1 #define __BTREE_TP(pfx, type, sfx) pfx ## type ## sfx
2 #define _BTREE_TP(pfx, type, sfx) __BTREE_TP(pfx, type, sfx)
3 #define BTREE_TP(pfx) _BTREE_TP(pfx, BTREE_TYPE_SUFFIX,)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/lib/
H A Dll_addr.c60 inet_prefix pfx; local
61 if (get_addr_1(&pfx, arg, AF_INET)) {
67 memcpy(lladdr, pfx.data, 4);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Davstring.c33 int av_strstart(const char *str, const char *pfx, const char **ptr) argument
35 while (*pfx && *pfx == *str) {
36 pfx++;
39 if (!*pfx && ptr)
41 return !*pfx;
44 int av_stristart(const char *str, const char *pfx, const char **ptr) argument
46 while (*pfx && av_toupper((unsigned)*pfx) == av_toupper((unsigned)*str)) {
47 pfx
[all...]
H A Davstring.h34 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
38 * @param pfx prefix to test
42 int av_strstart(const char *str, const char *pfx, const char **ptr);
45 * Return non-zero if pfx is a prefix of str independent of case. If
50 * @param pfx prefix to test
54 int av_stristart(const char *str, const char *pfx, const char **ptr);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dmisc.c68 const char *pfx = level ? KERN_DEBUG : KERN_DEFAULT; local
73 pfx = tmp;
76 printk("%sALSA %s:%d: ", pfx, file, line);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dvp56dsp.c60 #define VP56_EDGE_FILTER(pfx, suf, pix_inc, line_inc) \
61 static void pfx##_edge_filter_##suf(uint8_t *yuv, int stride, int t) \
68 v = pfx##_adjust(v, t); \
H A Dhuffman.c115 uint32_t pfx, int pl, int *pos, int no_zero_count)
121 bits[*pos] = pfx;
126 pfx <<= 1;
128 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0, pfx, pl,
130 pfx |= 1;
131 get_tree_codes(bits, lens, xlat, nodes, nodes[node].n0 + 1, pfx, pl,
113 get_tree_codes(uint32_t *bits, int16_t *lens, uint8_t *xlat, Node *nodes, int node, uint32_t pfx, int pl, int *pos, int no_zero_count) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/avr32/include/asm/
H A Dio.h78 #define __BUILD_MEMORY_SINGLE(pfx, bwl, type) \
80 pfx##write##bwl(type val, volatile void __iomem *addr) \
86 __val = pfx##ioswab##bwl(__addr, val); \
93 static inline type pfx##read##bwl(const volatile void __iomem *addr) \
103 return pfx##ioswab##bwl(__addr, __val); \
106 #define __BUILD_IOPORT_SINGLE(pfx, bwl, type, p, slow) \
107 static inline void pfx##out##bwl##p(type val, unsigned long port) \
113 __val = pfx##ioswab##bwl(__addr, val); \
121 static inline type pfx##in##bwl##p(unsigned long port) \
133 return pfx##ioswa
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-shmobile/
H A Dpfc-sh7377.c25 #define _1(fn, pfx, sfx) fn(pfx, sfx)
27 #define _10(fn, pfx, sfx) \
28 _1(fn, pfx##0, sfx), _1(fn, pfx##1, sfx), \
29 _1(fn, pfx##2, sfx), _1(fn, pfx##3, sfx), \
30 _1(fn, pfx##4, sfx), _1(fn, pfx##5, sfx), \
31 _1(fn, pfx##
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/hda/
H A Dpatch_ca0110.c139 static int _add_switch(struct hda_codec *codec, hda_nid_t nid, const char *pfx, argument
146 sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]);
150 static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, argument
157 sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]);
161 #define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0)
162 #define add_out_volume(codec, nid, pfx) _add_volume(codec, nid, pfx, 3, 0)
163 #define add_in_switch(codec, nid, pfx) _add_switch(codec, nid, pfx,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_devgroup.c121 static void devgroup_show(const char *pfx, const struct xt_devgroup_info *info, argument
127 printf(" %ssrc-group ", pfx);
134 printf(" %sdst-group ", pfx);

Completed in 280 milliseconds

123