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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2005-01-02-VAArgError-ICE.c 6 __builtin_va_list args; local
7 __builtin_va_start(args,a); // not the last named arg
8 foo(args);
  /external/libffi/testsuite/libffi.call/
closure_fn0.c 16 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
20 (int)*(unsigned long long *)args[0] + (int)(*(int *)args[1]) +
21 (int)(*(unsigned long long *)args[2]) + (int)*(int *)args[3] +
22 (int)(*(signed short *)args[4]) +
23 (int)(*(unsigned long long *)args[5]) +
24 (int)*(int *)args[6] + (int)(*(int *)args[7]) +
25 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn1.c 13 static void closure_test_fn1(ffi_cif* cif __UNUSED__, void* resp, void** args,
17 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
18 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
19 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
20 (int)*(float *)args[6] + (int)(*(int *)args[7]) +
21 (int)(*(double*)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn2.c 12 static void closure_test_fn2(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(double *)args[0] +(int)(*(double *)args[1]) +
17 (int)(*(double *)args[2]) + (int)*(double *)args[3] +
18 (int)(*(signed short *)args[4]) + (int)(*(double *)args[5]) +
19 (int)*(double *)args[6] + (int)(*(int *)args[7]) +
20 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn3.c 12 static void closure_test_fn3(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
17 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
18 (int)(*(float *)args[4]) + (int)(*(float *)args[5]) +
19 (int)*(float *)args[6] + (int)(*(float *)args[7]) +
20 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn4.c 14 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
18 (int)*(unsigned long long *)args[0] + (int)*(unsigned long long *)args[1] +
19 (int)*(unsigned long long *)args[2] + (int)*(unsigned long long *)args[3] +
20 (int)*(unsigned long long *)args[4] + (int)*(unsigned long long *)args[5] +
21 (int)*(unsigned long long *)args[6] + (int)*(unsigned long long *)args[7] +
22 (int)*(unsigned long long *)args[8] + (int)*(unsigned long long *)args[9]
    [all...]
closure_fn5.c 13 closure_test_fn5(ffi_cif* cif __UNUSED__, void* resp, void** args,
17 (int)*(unsigned long long *)args[0] + (int)*(unsigned long long *)args[1] +
18 (int)*(unsigned long long *)args[2] + (int)*(unsigned long long *)args[3] +
19 (int)*(unsigned long long *)args[4] + (int)*(unsigned long long *)args[5] +
20 (int)*(unsigned long long *)args[6] + (int)*(unsigned long long *)args[7] +
21 (int)*(unsigned long long *)args[8] + (int)*(unsigned long long *)args[9]
    [all...]
closure_fn6.c 12 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(unsigned long long *)args[0] +
17 (int)(*(unsigned long long *)args[1]) +
18 (int)(*(unsigned long long *)args[2]) +
19 (int)*(unsigned long long *)args[3] +
20 (int)(*(int *)args[4]) + (int)(*(double *)args[5]) +
21 (int)*(double *)args[6] + (int)(*(float *)args[7]) +
22 (int)(*(double *)args[8]) + (int)*(double *)args[9]
    [all...]
  /external/valgrind/main/none/tests/ppc32/
test_gx.c 74 double* args, int nargs,
82 a = args[i];
95 double* args = malloc(nargs * sizeof(double)); local
96 args[0] = 0.0;
97 args[1] = 1.0 / 0.0; // inf
98 args[2] = -args[1]; // -inf
99 args[3] = args[2]/args[2]; // na
    [all...]
test_fx.c 39 double* args, int nargs,
47 a = args[i];
60 double* args = malloc(nargs * sizeof(double)); local
61 args[0] = 0.0;
62 args[1] = 1.0 / 0.0; // inf
63 args[2] = -args[1]; // -inf
64 args[3] = args[2]/args[2]; // na
    [all...]
  /dalvik/tests/023-many-interfaces/src/
Main.java 2 static public void main(String[] args) throws Exception {
3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
  /external/libffi/testsuite/libffi.special/
unwindtest.cc 12 void** args __UNUSED__, void* userdata __UNUSED__)
20 void** args, void* userdata __UNUSED__)
23 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
24 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
25 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
26 (int)*(float *)args[6] + (int)(*(int *)args[7])
    [all...]
  /external/bluetooth/bluez/test/
test-telephony 17 (options, args) = parser.parse_args()
30 if len(args) < 1:
50 if args[0] == "connect":
51 if len(args) < 2:
54 device = adapter.FindDevice(args[1])
60 if args[0] == "disconnect":
61 if len(args) < 2:
64 device = adapter.FindDevice(args[1])
70 if args[0] == "speakergain":
71 if len(args) < 2
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
ext-blocks.cpp 4 template<typename ...Args>
5 int f0(Args ...args) {
7 return sizeof...(Args);
9 return sizeof...(args);
13 template<typename ...Args>
14 int f1(Args ...args) {
16 return f0(args...);
23 template<typename ...Args>
    [all...]
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 53 def SplitArgsIntoSections(args):
55 while len(args) > 0:
56 if not '--' in args:
58 dashes = len(args)
60 dashes = args.index('--')
62 sections.append(args[:dashes])
65 if dashes + 1 == len(args):
69 args = []
70 sections.append(args)
72 args = args[dashes + 1:
    [all...]
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_fsa.c 23 va_list args; local
26 va_start(args, mp);
31 while ((p = va_arg(args, void*)) != NULL) {
33 va_end(args);
38 while ((p = va_arg(args, void*)) != NULL) {
40 va_end(args);
45 while ((p = va_arg(args, void*)) != NULL) {
47 va_end(args);
52 va_end(args);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebKitPointConstructor.cpp 43 v8::Handle<v8::Value> V8WebKitPoint::constructorCallback(const v8::Arguments& args)
47 if (!args.IsConstructCall())
52 if (args.Length() > 1) {
53 if (!args[0]->IsUndefined()) {
54 x = toFloat(args[0]);
58 if (!args[1]->IsUndefined()) {
59 y = toFloat(args[1]);
66 V8DOMWrapper::setDOMWrapper(args.Holder(), &info, point.get());
67 return args.Holder();
  /external/chromium/chrome/browser/ui/webui/options/
sync_setup_handler.h 25 virtual void ShowGaiaLogin(const DictionaryValue& args);
28 virtual void ShowConfigure(const DictionaryValue& args);
29 virtual void ShowPassphraseEntry(const DictionaryValue& args);
30 virtual void ShowFirstPassphrase(const DictionaryValue& args);
41 void OnDidShowPage(const ListValue* args);
42 void OnDidClosePage(const ListValue* args);
43 void HandleSubmitAuth(const ListValue* args);
44 void HandleConfigure(const ListValue* args);
45 void HandlePassphraseEntry(const ListValue* args);
46 void HandlePassphraseCancel(const ListValue* args);
    [all...]
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 25 public Object trap(Object[] args, int identifier) throws Throwable {
29 return ClassMetaobject.invoke(this, identifier, args);
31 return mobj.trapMethodcall(identifier, args);
34 public static Object trapStatic(Object[] args, int identifier)
37 return _classobject.trapMethodcall(identifier, args);
40 public static Object trapRead(Object[] args, String name) {
41 if (args[0] == null)
44 return ((Metalevel)args[0])._getMetaobject().trapFieldRead(name);
47 public static Object trapWrite(Object[] args, String name) {
48 Metalevel base = (Metalevel)args[0]
    [all...]
  /bionic/libc/netbsd/resolv/
res_debug.h 24 # define Dprint(cond, args) /*empty*/
25 # define DprintQ(cond, args, query, size) /*empty*/
29 # define Dprint(cond, args) if (cond) {fprintf args;} else {}
30 # define DprintQ(cond, args, query, size) if (cond) {\
31 fprintf args;\
  /external/bison/src/
complain.c 50 va_list args;
56 va_start (args, message);
57 vfprintf (stderr, message, args);
58 va_end (args);
67 va_list args;
71 va_start (args, message);
72 vfprintf (stderr, message, args);
73 va_end (args);
87 va_list args;
92 va_start (args, message)
49 va_list args; local
66 va_list args; local
85 va_list args; local
101 va_list args; local
120 va_list args; local
136 va_list args; local
    [all...]
  /dalvik/tests/004-annotations/src/
Main.java 4 static public void main(String[] args) {
5 TestAnnotations.main(args);
  /dalvik/vm/native/
java_util_concurrent_atomic_AtomicLong.cpp 28 const u4* args, JValue* pResult)
30 UNUSED_PARAMETER(args);
org_apache_harmony_dalvik_NativeTestTarget.cpp 30 const u4* args, JValue* pResult)
32 UNUSED_PARAMETER(args);
  /external/bluetooth/bluez/audio/
bluetooth.conf 16 @args [ ADDRESS ]
17 @args.ADDRESS {
25 @args [ ADDRESS ]
26 @args.ADDRESS {

Completed in 1537 milliseconds

1 2 3 4 5 6 7 8 91011>>