/system/extras/tests/bionic/libc/other/ |
test_jpeg.c | 251 const char* arg = &argv[1][1]; local 252 switch (arg[0]) { 254 if (arg[1] == 0) { 257 arg = argv[2]; 261 arg += 1; 263 repeat_count = strtol(arg, NULL, 10); 274 if (arg[1] == 0) { 277 arg = argv[2]; 281 arg += 1; 283 dct_method = strtol(arg, NULL, 10) [all...] |
/external/iptables/extensions/ |
libxt_iprange.c | 76 char *arg = strdup(oarg); local 79 if (arg == NULL) 81 dash = strchr(arg, '-'); 83 iprange_parse_spec(arg, arg, range, family, optname); 84 free(arg); 89 iprange_parse_spec(arg, dash + 1, range, family, optname); 92 "will never match\n", arg, dash + 1); 93 free(arg); 107 iprange_parse_range(cb->arg, range, NFPROTO_IPV4, "--src-range") [all...] |
libipt_REDIRECT.c | 41 parse_ports(const char *arg, struct nf_nat_multi_range *mr) 48 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX) && 49 (port = xtables_service_to_port(arg, NULL)) == (unsigned)-1) 50 xtables_param_act(XTF_BAD_VALUE, "REDIRECT", "--to-ports", arg); 72 xtables_param_act(XTF_BAD_VALUE, "REDIRECT", "--to-ports", arg); 96 parse_ports(cb->arg, mr);
|
/external/ppp/pppd/ |
cbcp.c | 71 void *arg)); 227 cbcp_printpkt(p, plen, printer, arg) 231 void *arg; 246 printer(arg, " %s", cbcp_codenames[code-1]); 248 printer(arg, " code=0x%x", code); 250 printer(arg, " id=0x%x", id); 265 printer(arg, " <"); 269 printer(arg, " %s", cbcp_optionnames[opt-1]); 271 printer(arg, " option=0x%x", opt); 275 printer(arg, " delay = %d", delay) [all...] |
/external/libvpx/ |
vpxdec.c | 708 struct arg arg; local 733 for (argi = argj = argv; (*argj = *argi); argi += arg.argv_step) 735 memset(&arg, 0, sizeof(arg)); 736 arg.argv_step = 1; 738 if (arg_match(&arg, &codecarg, argi)) 743 if (!strcmp(ifaces[j].name, arg.val)) 750 arg.val); 752 else if (arg_match(&arg, &outputfile, argi) [all...] |
/external/qemu/target-mips/ |
translate.c | 438 #define gen_helper_0i(name, arg) do { \ 439 TCGv_i32 helper_tmp = tcg_const_i32(arg); \ [all...] |
/external/compiler-rt/BlocksRuntime/ |
runtime.c | 229 * version 3, 4 arg, but changed 1st arg 285 static void *_Block_copy_internal(const void *arg, const int flags) { 289 //printf("_Block_copy_internal(%p, %x)\n", arg, flags); 290 if (!arg) return NULL; 294 aBlock = (struct Block_layout *)arg; 368 static void _Block_byref_assign_copy(void *dest, const void *arg, const int flags) { 370 struct Block_byref *src = (struct Block_byref *)arg; 414 static void _Block_byref_release(const void *arg) { 415 struct Block_byref *shared_struct = (struct Block_byref *)arg; [all...] |
/external/qemu/tcg/ |
tcg-op.h | 369 static inline void tcg_gen_mov_i32(TCGv_i32 ret, TCGv_i32 arg) 371 if (!TCGV_EQUAL_I32(ret, arg)) 372 tcg_gen_op2_i32(INDEX_op_mov_i32, ret, arg); 375 static inline void tcg_gen_movi_i32(TCGv_i32 ret, int32_t arg) 377 tcg_gen_op2i_i32(INDEX_op_movi_i32, ret, arg); 771 static inline void tcg_gen_mov_i64(TCGv_i64 ret, TCGv_i64 arg) 773 if (!TCGV_EQUAL_I64(ret, arg)) { 774 tcg_gen_mov_i32(TCGV_LOW(ret), TCGV_LOW(arg)); 775 tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg)); 779 static inline void tcg_gen_movi_i64(TCGv_i64 ret, int64_t arg) 781 tcg_gen_movi_i32(TCGV_LOW(ret), arg); local 782 tcg_gen_movi_i32(TCGV_HIGH(ret), arg >> 32); local 1538 tcg_gen_mov_i32(TCGV_LOW(ret), arg); local 1544 tcg_gen_mov_i32(TCGV_LOW(ret), arg); local [all...] |
/frameworks/compile/libbcc/runtime/BlocksRuntime/ |
runtime.c | 230 * version 3, 4 arg, but changed 1st arg 286 static void *_Block_copy_internal(const void *arg, const int flags) { 290 //printf("_Block_copy_internal(%p, %x)\n", arg, flags); 291 if (!arg) return NULL; 295 aBlock = (struct Block_layout *)arg; 369 static void _Block_byref_assign_copy(void *dest, const void *arg, const int flags) { 371 struct Block_byref *src = (struct Block_byref *)arg; 415 static void _Block_byref_release(const void *arg) { 416 struct Block_byref *shared_struct = (struct Block_byref *)arg; [all...] |
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
AbstractQueuedLongSynchronizer.java | 600 * @param arg the acquire argument 603 final boolean acquireQueued(final Node node, long arg) { 609 if (p == head && tryAcquire(arg)) { 627 * @param arg the acquire argument 629 private void doAcquireInterruptibly(long arg) 636 if (p == head && tryAcquire(arg)) { 655 * @param arg the acquire argument 659 private boolean doAcquireNanos(long arg, long nanosTimeout) 667 if (p == head && tryAcquire(arg)) { 692 * @param arg the acquire argumen [all...] |
AbstractQueuedSynchronizer.java | 113 * while (!tryAcquire(arg)) { 119 * if (tryRelease(arg)) [all...] |
/external/libvpx/vp8/common/x86/ |
subpixel_sse2.asm | 46 mov rdx, arg(6) ;vp8_filter 47 mov rsi, arg(0) ;src_ptr 49 mov rdi, arg(1) ;output_ptr 51 movsxd rcx, dword ptr arg(4) ;output_height 52 movsxd rax, dword ptr arg(2) ;src_pixels_per_line ; Pitch for Source 54 movsxd r8, dword ptr arg(5) ;output_width 121 add rdi, DWORD Ptr arg(5) ;[output_width] 166 mov rdx, arg(6) ;vp8_filter 167 mov rsi, arg(0) ;src_ptr 169 mov rdi, arg(1) ;output_pt [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
FieldPackerTest.java | 141 for (int arg: badAlignArgs) { 143 fp.align(arg); 150 for (int arg: badResetArgs) { 152 fp.reset(arg); 160 for (int arg: badSkipArgs) { 163 fp.skip(arg);
|
/dalvik/vm/hprof/ |
Hprof.cpp | 177 static void hprofRootVisitor(void *addr, u4 threadId, RootType type, void *arg) 200 assert(arg != NULL); 206 ctx = (hprof_context_t *)arg; 217 static void hprofBitmapCallback(Object *obj, void *arg) 220 assert(arg != NULL); 221 hprof_context_t *ctx = (hprof_context_t *)arg;
|
/external/bison/lib/ |
argmatch.c | 76 /* If ARG is an unambiguous match for an element of the 88 argmatch (const char *arg, const char *const *arglist, 92 size_t arglen; /* Length of ARG. */ 96 arglen = strlen (arg); 101 if (!strncmp (arglist[i], arg, arglen)) 181 const char *arg, const char *const *arglist, 185 ptrdiff_t res = argmatch (arg, arglist, vallist, valsize); 191 argmatch_invalid (context, arg, res);
|
/external/chromium/build/ |
gyp_chromium | 78 for arg in args: 79 if arg.startswith('-I') and len(arg) > 2: 80 specified_includes.add(os.path.realpath(arg[2:])) 127 for arg in args: 128 if arg.endswith('.gyp'):
|
/external/elfutils/libdw/ |
dwarf_getscopes.c | 70 pc_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 72 struct args *a = arg; 107 origin_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 109 struct args *a = arg; 140 pc_record (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 142 struct args *a = arg;
|
/external/elfutils/tests/ |
saridx.c | 102 int arg = 1; local 106 if (arg < argc && strcmp (argv[arg], "-v") == 0) 109 ++arg; 113 if (arg >= argc) 117 fd = open (argv[arg], O_RDONLY);
|
/external/openssl/crypto/dh/ |
dhtest.c | 92 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg); 211 static int MS_CALLBACK cb(int p, int n, BN_GENCB *arg) 219 BIO_write(arg->arg,&c,1); 220 (void)BIO_flush(arg->arg);
|
/external/v8/build/ |
gyp_v8 | 86 for arg in args: 87 if arg.startswith('-I') and len(arg) > 2: 88 specified_includes.add(os.path.realpath(arg[2:])) 124 for arg in args: 125 if arg.endswith('.gyp'):
|
/external/valgrind/main/helgrind/tests/ |
annotate_hbefore.c | 205 void* thread_fn ( void* arg ) 207 UWord* w = (UWord*)arg; 261 void* thread_fn1 ( void* arg ) 263 UWord* w = (UWord*)arg; 272 void* thread_fn2 ( void* arg ) 274 UWord* w = (UWord*)arg;
|
/external/valgrind/unittest/ |
thread_wrappers_win.h | 197 MyThread(worker_t worker, void *arg = NULL, const char *name = NULL) 198 :w_(worker), arg_(arg), name_(name), t_(NULL) {} 199 MyThread(void (*worker)(void), void *arg = NULL, const char *name = NULL) 200 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name), t_(NULL) {} 201 MyThread(void (*worker)(void *), void *arg = NULL, const char *name = NULL) 202 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name), t_(NULL) {}
|
/libcore/luni/src/main/native/ |
cbigint.cpp | 317 uint64_t arg; local 323 arg = LOW_IN_U64 (arg1[index]); 324 digit = HIGH_IN_U64 (digit) + TIMES_TEN (arg); 327 arg = HIGH_IN_U64 (arg1[index]); 328 digit = HIGH_IN_U64 (digit) + TIMES_TEN (arg); 510 highestSetBitHighPrecision (uint64_t * arg, int32_t length) 516 highBit = highestSetBit (arg + length); 525 lowestSetBitHighPrecision (uint64_t * arg, int32_t length) 531 lowBit = lowestSetBit (arg + index); 565 toDoubleHighPrecision (uint64_t * arg, int32_t length [all...] |
/system/core/fastboot/ |
usbtest.c | 154 char *arg = *argv++; local 155 if(!strncmp(arg,"count=",6)) { 156 arg_count = atoi(arg + 6); 157 } else if(!strncmp(arg,"size=",5)) { 158 arg_size = atoi(arg + 5); 160 fprintf(stderr,"unknown argument: %s\n", arg);
|
/system/core/libsysutils/src/ |
SocketClient.cpp | 110 char *SocketClient::quoteArg(const char *arg) { 111 int len = strlen(arg); 114 const char *end = arg + len; 117 while (arg < end) { 118 switch (*arg) { 123 *(current++) = *(arg++);
|