HomeSort by relevance Sort by last modified time
    Searched refs:arg (Results 1 - 25 of 1305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
macros.py 81 macro IS_NULL(arg) = (arg === null);
82 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null);
83 macro IS_UNDEFINED(arg) = (typeof(arg) === 'undefined');
84 macro IS_NUMBER(arg) = (typeof(arg) === 'number');
85 macro IS_STRING(arg) = (typeof(arg) === 'string')
    [all...]
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_CMPG_DOUBLE_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPG_FLOAT_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPL_DOUBLE_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
TEMPLATE_CMPL_FLOAT_VFP.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
  /dalvik/vm/mterp/arm-vfp/
OP_CMPG_DOUBLE.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPG_FLOAT.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPL_DOUBLE.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
OP_CMPL_FLOAT.S 3 %verify "left arg NaN"
4 %verify "right arg NaN"
  /dalvik/vm/mterp/armv5te/
OP_CMPL_DOUBLE.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
OP_CMPL_FLOAT.S 4 %verify "left arg NaN"
5 %verify "right arg NaN"
42 mov r0, r9 @ copy to arg registers
  /external/expat/xmlwf/
filemap.h 10 const wchar_t *, void *arg),
11 void *arg);
15 const char *, void *arg),
16 void *arg);
  /libcore/luni/src/main/java/java/util/
IllegalFormatConversionException.java 35 private final Class<?> arg; field in class:IllegalFormatConversionException
43 * @param arg
46 public IllegalFormatConversionException(char c, Class<?> arg) {
48 if (arg == null) {
51 this.arg = arg;
60 return arg;
74 return "%" + c + " can't format " + arg.getName() + " arguments";
  /external/iproute2/ip/
rtm_map.c 59 int rtnl_rtntype_a2n(int *id, char *arg)
64 if (strcmp(arg, "local") == 0)
66 else if (strcmp(arg, "nat") == 0)
68 else if (matches(arg, "broadcast") == 0 ||
69 strcmp(arg, "brd") == 0)
71 else if (matches(arg, "anycast") == 0)
73 else if (matches(arg, "multicast") == 0)
75 else if (matches(arg, "prohibit") == 0)
77 else if (matches(arg, "unreachable") == 0)
79 else if (matches(arg, "blackhole") == 0
    [all...]
  /dalvik/vm/alloc/
Visit.h 26 typedef void Visitor(void *addr, void *arg);
31 void dvmVisitObject(Visitor *visitor, Object *obj, void *arg);
36 void dvmVisitRoots(Visitor *visitor, void *arg);
Verify.c 23 static void dumpReferencesVisitor(void *pObj, void *arg)
26 Object *lookingFor = *(Object **)arg;
28 *(Object **)arg = NULL;
32 static void dumpReferencesCallback(void *ptr, void *arg)
34 Object *obj = arg;
41 LOGD("Found %p in the heap @ %p", arg, ptr);
46 static void dumpReferencesRootVisitor(void *ptr, void *arg)
49 Object *lookingFor = *(Object **)arg;
51 LOGD("Found %p in a root @ %p", arg, ptr);
61 void *arg = (void *)obj local
98 Object *arg = (Object *)obj; local
    [all...]
  /external/iproute2/include/
rtm_map.h 5 int rtnl_rtntype_a2n(int *id, char *arg);
7 int get_rt_realms(__u32 *realms, char *arg);
  /hardware/ti/wlan/wl1271/platforms/os/linux/inc/
ioctl_init.h 52 # define print_deb(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
54 # define print_deb(fmt, arg...)
58 # define print_info(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
60 # define print_info(fmt, arg...)
64 # define print_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": " fmt,##arg)
  /system/wlan/ti/wilink_6_1/platforms/os/linux/inc/
ioctl_init.h 52 # define print_deb(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
54 # define print_deb(fmt, arg...)
58 # define print_info(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
60 # define print_info(fmt, arg...)
64 # define print_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": " fmt,##arg)
  /external/libvpx/
args.h 16 struct arg struct
35 struct arg arg_init(char **argv);
36 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
37 const char *arg_next(struct arg *arg);
41 unsigned int arg_parse_uint(const struct arg *arg);
42 int arg_parse_int(const struct arg *arg);
43 struct vpx_rational arg_parse_rational(const struct arg *arg)
    [all...]
args.c 28 struct arg arg_init(char **argv)
30 struct arg a;
40 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv)
42 struct arg arg; local
47 arg = arg_init(argv);
50 && strlen(arg.argv[0]) == strlen(def->short_name) + 1
51 && !strcmp(arg.argv[0] + 1, def->short_name))
54 arg.name = arg.argv[0] + 1
    [all...]
  /system/extras/tests/bionic/libc/bionic/
test_pthread_create.c 6 thread1_func(void* arg)
8 printf("Thread 1 (arg=%d tid=%d) entered.\n", (unsigned)arg, gettid());
13 thread2_func(void* arg)
15 printf("thread 2 (arg=%d tid=%d) entered.\n", (unsigned)arg, gettid());
  /external/openssl/crypto/des/
typemap 12 $var=(des_cblock *)SvPV($arg,len);
19 $var=(des_key_schedule *)SvPV($arg,len);
28 sv_setpvn($arg,(char *)$var,DES_KEY_SZ);
31 sv_setpvn($arg,(char *)$var,DES_SCHEDULE_SZ);
34 sv_setpvn($arg,(char *)$var,len);
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 46 String arg = args[at]; local
47 if (arg.equals("--") || !arg.startsWith("--")) {
49 } else if (arg.equals("--bytes")) {
51 } else if (arg.equals("--basic-blocks")) {
53 } else if (arg.equals("--rop-blocks")) {
55 } else if (arg.equals("--optimize")) {
57 } else if (arg.equals("--ssa-blocks")) {
59 } else if (arg.startsWith("--ssa-step=")) {
60 parsedArgs.ssaStep = arg.substring(arg.indexOf('=') + 1)
    [all...]
  /external/bison/lib/
quotearg.h 91 argument ARG (of size ARGSIZE), using O to control quoting.
99 char const *arg, size_t argsize,
104 char *quotearg_alloc (char const *arg, size_t argsize,
107 /* Use storage slot N to return a quoted version of the string ARG.
112 char *quotearg_n (int n, char const *arg);
114 /* Equivalent to quotearg_n (0, ARG). */
115 char *quotearg (char const *arg);
117 /* Use style S and storage slot N to return a quoted version of the string ARG.
118 This is like quotearg_n (N, ARG), except that it uses S with no other
120 char *quotearg_n_style (int n, enum quoting_style s, char const *arg);
    [all...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 91011>>