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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/
throw_location.cc 35 void ThrowLocation::VisitRoots(RootCallback* visitor, void* arg) {
37 visitor(&this_object_, arg, RootInfo(kRootVMInternal));
41 visitor(reinterpret_cast<mirror::Object**>(&method_), arg, RootInfo(kRootVMInternal)); local
  /bionic/libc/bionic/
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/chromium_org/third_party/boringssl/src/tool/
args.cc 30 const std::string &arg = args[i]; local
33 if (strcmp(arg.c_str(), templates[j].name) == 0) {
40 fprintf(stderr, "Unknown argument: %s\n", arg.c_str());
45 fprintf(stderr, "Missing argument for option: %s\n", arg.c_str());
49 if (out_args->find(arg) != out_args->end()) {
50 fprintf(stderr, "Duplicate value given for: %s\n", arg.c_str());
54 (*out_args)[arg] = args[++i];
  /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...]
  /external/deqp/execserver/tools/
xsMain.cpp 57 const char* arg = argv[argNdx]; local
59 if (deStringBeginsWith(arg, "--port="))
60 port = atoi(arg+sizeof("--port=")-1);
61 else if (deStringEqual(arg, "--single"))
  /art/test/101-fibonacci/src/
Main.java 46 String arg = (args.length > 0) ? args[0] : "10"; local
48 int x = Integer.parseInt(arg);
  /external/e2fsprogs/intl/
eval-plural.h 46 unsigned long int arg = plural_eval (pexp->val.args[0], n); local
47 return ! arg;
  /external/lldb/examples/plugins/commands/
fooplugin.cpp 35 const char* arg = *command; local
36 while (arg)
38 result.Printf("%s\n",arg);
39 arg = *(++command);
  /external/lldb/test/functionalities/plugins/commands/
plugin.cpp 35 const char* arg = *command; local
36 while (arg)
38 result.Printf("%s ",arg);
39 arg = *(++command);
  /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/bindings/core/v8/custom/
V8MutationObserverCustom.cpp 54 v8::Local<v8::Value> arg = info[0]; local
55 if (!arg->IsFunction()) {
63 OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), wrapper, ScriptState::current(info.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.h 42 Expression* arg(int pos) { return subExpr(pos); } function in class:blink::XPath::Function
43 const Expression* arg(int pos) const { return subExpr(pos); } function in class:blink::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]);

Completed in 2102 milliseconds

1 2 3 4 5 6 7 8 91011>>