Home
last modified time | relevance | path

Searched defs:arg (Results 1 – 25 of 379) sorted by relevance

12345678910>>...16

/external/bluetooth/glib/glib/gnulib/
Dvasnprintf.c399 int arg; in vasnprintf() local
421 int arg; in vasnprintf() local
739 #define SNPRINTF_BUF(arg) \ in vasnprintf() argument
759 #define SNPRINTF_BUF(arg) \ in vasnprintf() argument
781 int arg = a.arg[dp->arg_index].a.a_schar; in vasnprintf() local
787 unsigned int arg = a.arg[dp->arg_index].a.a_uchar; in vasnprintf() local
793 int arg = a.arg[dp->arg_index].a.a_short; in vasnprintf() local
799 unsigned int arg = a.arg[dp->arg_index].a.a_ushort; in vasnprintf() local
805 int arg = a.arg[dp->arg_index].a.a_int; in vasnprintf() local
811 unsigned int arg = a.arg[dp->arg_index].a.a_uint; in vasnprintf() local
[all …]
/external/e2fsprogs/intl/
Dvasnprintf.c285 int arg; in VASNPRINTF() local
307 int arg; in VASNPRINTF() local
598 # define SNPRINTF_BUF(arg) \ in VASNPRINTF() argument
618 # define SNPRINTF_BUF(arg) \ in VASNPRINTF() argument
640 int arg = a.arg[dp->arg_index].a.a_schar; in VASNPRINTF() local
646 unsigned int arg = a.arg[dp->arg_index].a.a_uchar; in VASNPRINTF() local
652 int arg = a.arg[dp->arg_index].a.a_short; in VASNPRINTF() local
658 unsigned int arg = a.arg[dp->arg_index].a.a_ushort; in VASNPRINTF() local
664 int arg = a.arg[dp->arg_index].a.a_int; in VASNPRINTF() local
670 unsigned int arg = a.arg[dp->arg_index].a.a_uint; in VASNPRINTF() local
[all …]
/external/grub/stage2/
Dbuiltins.c138 blocklist_func (char *arg, int flags) in blocklist_func()
240 boot_func (char *arg, int flags) in boot_func()
327 bootp_func (char *arg, int flags) in bootp_func()
372 cat_func (char *arg, int flags) in cat_func()
405 chainloader_func (char *arg, int flags) in chainloader_func()
482 cmp_func (char *arg, int flags) in cmp_func()
570 color_func (char *arg, int flags) in color_func()
699 configfile_func (char *arg, int flags) in configfile_func()
740 debug_func (char *arg, int flags) in debug_func()
768 default_func (char *arg, int flags) in default_func()
[all …]
Dcmdline.c136 char *arg; in enter_cmdline() local
194 char *arg; in run_script() local
/external/libpcap/missing/
Dsnprintf.c223 unsigned char *arg, in append_string()
254 unsigned char arg, in append_char()
275 #define PARSE_INT_FORMAT(res, arg, unsig) \ argument
374 long arg; in xyzprintf() local
392 unsigned long arg; in xyzprintf() local
402 unsigned long arg; in xyzprintf() local
412 unsigned long arg; in xyzprintf() local
422 unsigned long arg; in xyzprintf() local
432 unsigned long arg = (unsigned long)va_arg(ap, void*); in xyzprintf() local
440 int *arg = va_arg(ap, int*); in xyzprintf() local
/external/tcpdump/missing/
Dsnprintf.c223 unsigned char *arg, in append_string()
254 unsigned char arg, in append_char()
275 #define PARSE_INT_FORMAT(res, arg, unsig) \ argument
374 long arg; in xyzprintf() local
392 unsigned long arg; in xyzprintf() local
402 unsigned long arg; in xyzprintf() local
412 unsigned long arg; in xyzprintf() local
422 unsigned long arg; in xyzprintf() local
432 unsigned long arg = (unsigned long)va_arg(ap, void*); in xyzprintf() local
440 int *arg = va_arg(ap, int*); in xyzprintf() local
/external/openssl/crypto/asn1/
Da_mbstr.c251 int (*rfunc)(unsigned long value, void *in), void *arg) in traverse_string()
287 static int in_utf8(unsigned long value, void *arg) in in_utf8()
297 static int out_utf8(unsigned long value, void *arg) in out_utf8()
309 static int type_str(unsigned long value, void *arg) in type_str()
328 static int cpy_asc(unsigned long value, void *arg) in cpy_asc()
340 static int cpy_bmp(unsigned long value, void *arg) in cpy_bmp()
353 static int cpy_univ(unsigned long value, void *arg) in cpy_univ()
368 static int cpy_utf8(unsigned long value, void *arg) in cpy_utf8()
Da_strex.c92 static int send_bio_chars(void *arg, const void *buf, int len) in send_bio_chars()
99 static int send_fp_chars(void *arg, const void *buf, int len) in send_fp_chars()
115 …c int do_esc_char(unsigned long c, unsigned char flags, char *do_quotes, char_io *io_ch, void *arg) in do_esc_char()
164 int type, unsigned char flags, char *quotes, char_io *io_ch, void *arg) in do_buf()
226 static int do_hex_dump(char_io *io_ch, void *arg, unsigned char *buf, int buflen) in do_hex_dump()
250 static int do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) in do_dump()
307 static int do_print_ex(char_io *io_ch, void *arg, unsigned long lflags, ASN1_STRING *str) in do_print_ex()
374 static int do_indent(char_io *io_ch, void *arg, int indent) in do_indent()
385 static int do_name_ex(char_io *io_ch, void *arg, X509_NAME *n, in do_name_ex()
/external/elfutils/libdw/
Ddwarf_end.c27 noop_free (void *arg) in noop_free()
33 cu_free (void *arg) in cu_free()
/external/webkit/WebCore/xml/
DXPathFunctions.h43 Expression* arg(int pos) { return subExpr(pos); } in arg() function
44 const Expression* arg(int pos) const { return subExpr(pos); } in arg() function
/external/qemu/
Dsoftmmu-semi.h25 #define get_user_u32(arg, p) ({ arg = softmmu_tget32(env, p) ; 0; }) argument
26 #define get_user_u8(arg, p) ({ arg = softmmu_tget8(env, p) ; 0; }) argument
27 #define get_user_ual(arg, p) get_user_u32(arg, p) argument
34 #define put_user_u32(arg, p) ({ softmmu_tput32(env, p, arg) ; 0; }) argument
35 #define put_user_ual(arg, p) put_user_u32(arg, p) argument
/external/bison/lib/
Dquotearg.c189 char const *arg, size_t argsize, in quotearg_buffer_restyled()
538 char const *arg, size_t argsize, in quotearg_buffer()
552 quotearg_alloc (char const *arg, size_t argsize, in quotearg_alloc()
572 quotearg_n_options (int n, char const *arg, size_t argsize, in quotearg_n_options()
635 quotearg_n (int n, char const *arg) in quotearg_n()
641 quotearg (char const *arg) in quotearg()
657 quotearg_n_style (int n, enum quoting_style s, char const *arg) in quotearg_n_style()
665 char const *arg, size_t argsize) in quotearg_n_style_mem()
672 quotearg_style (enum quoting_style s, char const *arg) in quotearg_style()
678 quotearg_char (char const *arg, char ch) in quotearg_char()
[all …]
/external/opencore/protocols/sdp/common/include/
Daac_payload_info.h38 inline void setcpresent(bool arg) in setcpresent()
43 inline void setAACplusSBRenabled(bool arg) in setAACplusSBRenabled()
Damr_payload_info.h65 inline void setRobustSorting(bool arg) in setRobustSorting()
69 inline void setOctetAlign(bool arg) in setOctetAlign()
73 inline void setCRC(bool arg) in setCRC()
/external/e2fsprogs/debugfs/
Dset_fields.c188 char *arg, *delim, *idx, *tmp; in find_field() local
240 static errcode_t parse_uint(struct field_set_info *info, char *arg) in parse_uint()
285 static errcode_t parse_int(struct field_set_info *info, char *arg) in parse_int()
316 static errcode_t parse_string(struct field_set_info *info, char *arg) in parse_string()
329 static errcode_t parse_time(struct field_set_info *info, char *arg) in parse_time()
347 static errcode_t parse_uuid(struct field_set_info *info, char *arg) in parse_uuid()
365 static errcode_t parse_hashalg(struct field_set_info *info, char *arg) in parse_hashalg()
379 static errcode_t parse_bmap(struct field_set_info *info, char *arg) in parse_bmap()
/external/expat/xmlwf/
Dunixfilemap.c22 void (*processor)(const void *, size_t, const char *, void *arg), in filemap() argument
Dreadfilemap.c37 void (*processor)(const void *, size_t, const char *, void *arg), in filemap() argument
Dwin32filemap.c27 void (*processor)(const void *, size_t, const TCHAR *, void *arg), in filemap() argument
/external/webkit/WebKit/qt/tests/qwebframe/
Dtst_qwebframe.cpp234 Q_INVOKABLE void myInvokableWithIntArg(int arg) { in myInvokableWithIntArg()
238 Q_INVOKABLE void myInvokableWithLonglongArg(qlonglong arg) { in myInvokableWithLonglongArg()
242 Q_INVOKABLE void myInvokableWithFloatArg(float arg) { in myInvokableWithFloatArg()
246 Q_INVOKABLE void myInvokableWithDoubleArg(double arg) { in myInvokableWithDoubleArg()
250 Q_INVOKABLE void myInvokableWithStringArg(const QString &arg) { in myInvokableWithStringArg()
335 Q_INVOKABLE void myInvokableWithVoidStarArg(void* arg) { in myInvokableWithVoidStarArg()
339 Q_INVOKABLE void myInvokableWithAmbiguousArg(int arg) { in myInvokableWithAmbiguousArg()
343 Q_INVOKABLE void myInvokableWithAmbiguousArg(uint arg) { in myInvokableWithAmbiguousArg()
359 Q_INVOKABLE void myInvokableWithPointArg(const QPoint &arg) { in myInvokableWithPointArg()
363 Q_INVOKABLE void myInvokableWithPointArg(const QPointF &arg) { in myInvokableWithPointArg()
[all …]
/external/opencore/oscl/unit_test/src/
Dunit_test_args.cpp40 void cmd_line_linux::get_arg(int n, char* &arg) in get_arg()
48 void cmd_line_linux::get_arg(int , oscl_wchar *&arg) in get_arg()
/external/strace/
Dproc.c90 proc_ioctl(tcp, code, arg) in proc_ioctl() argument
206 proc_ioctl(tcp, code, arg) in proc_ioctl() argument
/external/dbus/tools/
Ddbus-uuidgen.c52 get_arg (const char *arg, in get_arg()
99 char *arg = argv[i]; in main() local
/external/qemu/tcg/
Dtcg-op.h319 static inline void tcg_gen_mov_i32(TCGv_i32 ret, TCGv_i32 arg) in tcg_gen_mov_i32()
325 static inline void tcg_gen_movi_i32(TCGv_i32 ret, int32_t arg) in tcg_gen_movi_i32()
638 static inline void tcg_gen_mov_i64(TCGv_i64 ret, TCGv_i64 arg) in tcg_gen_mov_i64()
646 static inline void tcg_gen_movi_i64(TCGv_i64 ret, int64_t arg) in tcg_gen_movi_i64()
871 static inline void tcg_gen_mov_i64(TCGv_i64 ret, TCGv_i64 arg) in tcg_gen_mov_i64()
877 static inline void tcg_gen_movi_i64(TCGv_i64 ret, int64_t arg) in tcg_gen_movi_i64()
1172 static inline void tcg_gen_ext8s_i32(TCGv_i32 ret, TCGv_i32 arg) in tcg_gen_ext8s_i32()
1182 static inline void tcg_gen_ext16s_i32(TCGv_i32 ret, TCGv_i32 arg) in tcg_gen_ext16s_i32()
1194 static inline void tcg_gen_ext8u_i32(TCGv_i32 ret, TCGv_i32 arg) in tcg_gen_ext8u_i32()
1199 static inline void tcg_gen_ext16u_i32(TCGv_i32 ret, TCGv_i32 arg) in tcg_gen_ext16u_i32()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dbitops.c69 void ext2fs_warn_bitmap(errcode_t errcode, unsigned long arg, in ext2fs_warn_bitmap()
81 int code, unsigned long arg) in ext2fs_warn_bitmap2()
/external/webkit/V8Binding/v8/src/
Djump-target.cc210 void JumpTarget::Jump(Result* arg) { in Jump()
238 void JumpTarget::Branch(Condition cc, Result* arg, Hint hint) { in Branch()
253 void BreakTarget::Branch(Condition cc, Result* arg, Hint hint) { in Branch()
285 void JumpTarget::Bind(Result* arg) { in Bind()

12345678910>>...16