/bionic/libc/bionic/ |
fcntl.c | 36 void * arg; local 39 arg = va_arg(ap, void *); 42 return __fcntl64(fd, cmd, arg);
|
ioctl.c | 35 void * arg; local 38 arg = va_arg(ap, void *); 41 return __ioctl(fd, request, arg);
|
/development/ndk/sources/android/libportable/arch-mips/ |
ioctl.c | 220 void * arg; local 223 arg = va_arg(ap, void *); 226 return __ioctl(fd, mips_change_request(request), arg);
|
/development/ndk/sources/android/libportable/arch-x86/ |
ioctl.c | 38 void * arg; local 41 arg = va_arg(ap, void *); 44 return __ioctl(fd, x86_change_request(request), arg);
|
fcntl.c | 27 void * arg; local 30 arg = va_arg(ap, void *); 39 struct flock64_portable * flock64 = (struct flock64_portable *) arg; 50 return __fcntl64(fd, cmd, arg);
|
/external/clang/test/Sema/ |
block-sentinel-attribute.c | 3 void (^e) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (1,1))); variable 6 void (^bbad) (int arg, const char * format) __attribute__ ((__sentinel__)) ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} 7 bbad = ^void (int arg, const char * format) __attribute__ ((__sentinel__)) {} ; // expected-warning {{'sentinel' attribute only supported for variadic blocks}} 8 void (^b) (int arg, const char * format, ...) __attribute__ ((__sentinel__)) = // expected-note {{block has been explicitly marked sentinel here}} 9 ^ __attribute__ ((__sentinel__)) (int arg, const char * format, ...) {}; 10 void (^z) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (2))) = ^ __attribute__ ((__sentinel__ (2))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}} 13 void (^y) (int arg, const char * format, ...) __attribute__ ((__sentinel__ (5))) = ^ __attribute__ ((__sentinel__ (5))) (int arg, const char * format, ...) {}; // expected-note {{block has been explicitly marked sentinel here}}
|
/external/valgrind/main/none/tests/amd64/ |
looper.c | 4 long long int arg = 0; variable 14 "\tmovq arg, %rcx\n" 34 "\tmovq arg, %rcx\n" 54 "\tmovq arg, %rcx\n" 73 res = 0; arg = 10; loop_plain(); printf("res = %lld\n", res); 75 res = 0; arg = 10; loop_ne(); printf("res = %lld\n", res); 76 res = 0; arg = 500; loop_ne(); printf("res = %lld\n", res); 78 res = 0; arg = 10; loop_e(); printf("res = %lld\n", res); 79 res = 0; arg = 500; loop_e(); printf("res = %lld\n", res);
|
fxtract.c | 5 double arg, res1, res2; variable 12 "\tfldl arg\n" 21 arg = x * 1.414213562373049; 24 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
|
/external/valgrind/main/none/tests/x86/ |
looper.c | 4 int arg = 0; variable 13 "\tmovl " VG_SYM(arg) ", %ecx\n" 32 "\tmovl " VG_SYM(arg) ", %ecx\n" 51 "\tmovl " VG_SYM(arg) ", %ecx\n" 70 res = 0; arg = 10; loop_plain(); printf("res = %d\n", res); 72 res = 0; arg = 10; loop_ne(); printf("res = %d\n", res); 73 res = 0; arg = 500; loop_ne(); printf("res = %d\n", res); 75 res = 0; arg = 10; loop_e(); printf("res = %d\n", res); 76 res = 0; arg = 500; loop_e(); printf("res = %d\n", res);
|
fxtract.c | 5 double arg, res1, res2; variable 11 "\tfldl " VG_SYM(arg) "\n" 20 arg = x * 1.414213562373049; 23 printf("%17.10e -> %14.10f %14.10f\n", arg, res1, res2);
|
jcxz.c | 6 UInt test_jcxz ( UInt arg ) 9 block[0] = arg; 27 UInt test_jecxz ( UInt arg ) 30 block[0] = arg; 50 UInt arg = 0x01028374; local 51 printf("test_jcxz(0x%x) = 0x%x\n", arg, test_jcxz(arg)); 52 printf("test_jecxz(0x%x) = 0x%x\n", arg, test_jecxz(arg));
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
arg.hpp | 10 // Preprocessed version of "boost/mpl/arg.hpp" header 14 template<> struct arg< -1 > struct 31 template<> struct arg<1> struct 34 typedef arg<2> next; 49 template<> struct arg<2> struct 52 typedef arg<3> next; 67 template<> struct arg<3> struct 70 typedef arg<4> next; 85 template<> struct arg<4> struct 88 typedef arg<5> next 103 template<> struct arg<5> struct [all...] |
/art/test/101-fibonacci/src/ |
Main.java | 46 String arg = (args.length > 0) ? args[0] : "10"; local 48 int x = Integer.parseInt(arg);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8FormDataCustom.cpp | 52 v8::Handle<v8::Value> arg = info[1]; local 53 if (V8Blob::hasInstance(arg, info.GetIsolate(), worldType(info.GetIsolate()))) { 54 v8::Handle<v8::Object> object = v8::Handle<v8::Object>::Cast(arg); 66 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithNullCheck>, argString, arg);
|
V8MutationObserverCustom.cpp | 53 v8::Local<v8::Value> arg = info[0]; local 54 if (!arg->IsFunction()) { 63 OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), context, wrapper, info.GetIsolate());
|
/external/e2fsprogs/intl/ |
eval-plural.h | 46 unsigned long int arg = plural_eval (pexp->val.args[0], n); local 47 return ! arg;
|
/external/valgrind/main/helgrind/tests/ |
tc03_re_excl.c | 18 int* arg = (int*)argV; local 19 use(arg[5]); /* read access */
|
/external/apache-xml/src/main/java/org/apache/xalan/extensions/ |
ExpressionVisitor.java | 71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString(); local 72 if (arg.indexOf(":") > 0) 74 String prefix = arg.substring(0,arg.indexOf(":"));
|
/external/bison/lib/ |
open.c | 61 va_list arg; local 62 va_start (arg, flags); 66 mode = va_arg (arg, PROMOTED_MODE_T); 68 va_end (arg);
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathFunctions.h | 41 Expression* arg(int pos) { return subExpr(pos); } function in class:WebCore::XPath::Function 42 const Expression* arg(int pos) const { return subExpr(pos); } function in class:WebCore::XPath::Function
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
uoptions.c | 26 char *arg; local 31 arg=argv[i]; 32 if(!stopOptions && *arg=='-' && (c=arg[1])!=0) { 35 arg+=2; 38 if(*arg==0) { 45 if(options[j].longName && uprv_strcmp(arg, options[j].longName)==0) { 86 if(*arg!=0) { 88 option->value=arg; 89 /* do not process the rest of this arg as option letters * [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_wm_debug.c | 84 GLuint i, arg; local 144 for (arg = 0; arg < nr_args; arg++) { 149 if (inst->src[arg][i]) { 150 brw_wm_print_ref(c, inst->src[arg][i]);
|
/external/e2fsprogs/lib/ext2fs/ |
io_manager.c | 25 char *next, *ptr, *options, *arg; local 46 arg = strchr(ptr, '='); 47 if (arg) 48 *arg++ = 0; 50 retval = (channel->manager->set_option)(channel, ptr, arg);
|
/external/elfutils/libdwfl/ |
dwfl_getdwarf.c | 57 void *arg; member in struct:module_callback_info 62 const char *name, Dwarf_Addr start, void *arg) 64 const struct module_callback_info *info = arg; 67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg); 75 void *arg, 78 struct module_callback_info info = { callback, arg };
|
/external/icu4c/tools/toolutil/ |
uoptions.c | 26 char *arg; local 31 arg=argv[i]; 32 if(!stopOptions && *arg=='-' && (c=arg[1])!=0) { 35 arg+=2; 38 if(*arg==0) { 45 if(options[j].longName && uprv_strcmp(arg, options[j].longName)==0) { 86 if(*arg!=0) { 88 option->value=arg; 89 /* do not process the rest of this arg as option letters * [all...] |