Home
last modified time | relevance | path

Searched refs:arg2 (Results 1 - 25 of 516) sorted by relevance

12345678910>>...21

/third_party/rust/crates/libc/src/solid/
H A Dmod.rs448 pub fn fgets(arg1: *mut c_char, arg2: c_int, arg3: *mut FILE) -> *mut c_char; in fgets()
449 pub fn fopen(arg1: *const c_char, arg2: *const c_char) -> *mut FILE; in fopen()
450 pub fn fprintf(arg1: *mut FILE, arg2: *const c_char, ...) -> c_int; in fprintf()
451 pub fn fputc(arg1: c_int, arg2: *mut FILE) -> c_int; in fputc()
452 pub fn fputs(arg1: *const c_char, arg2: *mut FILE) -> c_int; in fputs()
453 pub fn fread(arg1: *mut c_void, arg2: size_t, arg3: size_t, arg4: *mut FILE) -> size_t; in fread()
454 pub fn freopen(arg1: *const c_char, arg2: *const c_char, arg3: *mut FILE) -> *mut FILE; in freopen()
455 pub fn fscanf(arg1: *mut FILE, arg2: *const c_char, ...) -> c_int; in fscanf()
456 pub fn fseek(arg1: *mut FILE, arg2: c_long, arg3: c_int) -> c_int; in fseek()
458 pub fn fwrite(arg1: *const c_void, arg2 in ftell()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_safe_arithmetic.cpp21 // Returns the result of adding arg1 and arg2 if it will fit in a T (where T is
25 T SafeAdd(T arg1, T arg2) { in SafeAdd() argument
32 if ((arg1 >= 0 && arg2 <= std::numeric_limits<T>::max() - arg1) || in SafeAdd()
33 (arg1 < 0 && arg2 >= std::numeric_limits<T>::min() - arg1)) { in SafeAdd()
34 return arg1 + arg2; in SafeAdd()
41 // Returns the result of multiplying arg1 and arg2 if it will fit in a T (where
45 T SafeUnsignedMult(T arg1, T arg2) { in SafeUnsignedMult() argument
46 if (arg1 == 0 || arg2 <= std::numeric_limits<T>::max() / arg1) { in SafeUnsignedMult()
47 return arg1 * arg2; in SafeUnsignedMult()
56 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, st argument
65 SafeInt32Add(std::int32_t arg1, std::int32_t arg2) SafeInt32Add() argument
69 SafeInt64Add(std::int64_t arg1, std::int64_t arg2) SafeInt64Add() argument
73 SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t *result) SafeUint32Add() argument
83 SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Add() argument
87 SafeUint64Add(std::uint64_t arg1, std::uint64_t arg2) SafeUint64Add() argument
91 SafeInt32Sub(std::int32_t arg1, std::int32_t arg2, std::int32_t *result) SafeInt32Sub() argument
101 SafeInt32Sub(std::int32_t arg1, std::int32_t arg2) SafeInt32Sub() argument
111 SafeUint32Sub(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Sub() argument
120 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t *result) SafeUint32Mult() argument
130 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t *result) SafeUint32Mult() argument
140 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t arg4, std::uint32_t *result) SafeUint32Mult() argument
150 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2) SafeUint32Mult() argument
154 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3) SafeUint32Mult() argument
159 SafeUint32Mult(std::uint32_t arg1, std::uint32_t arg2, std::uint32_t arg3, std::uint32_t arg4) SafeUint32Mult() argument
164 SafeInt32Mult(std::int32_t arg1, std::int32_t arg2) SafeInt32Mult() argument
176 SafeSizetMult(std::size_t arg1, std::size_t arg2) SafeSizetMult() argument
182 SafeInt64MultSlow(std::int64_t arg1, std::int64_t arg2) SafeInt64MultSlow() argument
210 SafeUint32DivideUp(std::uint32_t arg1, std::uint32_t arg2) SafeUint32DivideUp() argument
[all...]
H A Ddng_safe_arithmetic.h37 // If the result of adding arg1 and arg2 will fit in an int32_t (without
40 bool SafeInt32Add(std::int32_t arg1, std::int32_t arg2, std::int32_t *result);
42 // Returns the result of adding arg1 and arg2 if it will fit in the result type
45 std::int32_t SafeInt32Add(std::int32_t arg1, std::int32_t arg2);
46 std::int64_t SafeInt64Add(std::int64_t arg1, std::int64_t arg2);
48 // If the result of adding arg1 and arg2 will fit in a uint32_t (without
51 bool SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2,
54 // Returns the result of adding arg1 and arg2 if it will fit in the result type
57 std::uint32_t SafeUint32Add(std::uint32_t arg1, std::uint32_t arg2);
58 std::uint64_t SafeUint64Add(std::uint64_t arg1, std::uint64_t arg2);
113 SafeInt64MultByClang(std::int64_t arg1, std::int64_t arg2) SafeInt64MultByClang() argument
130 SafeInt64MultByInt128(std::int64_t arg1, std::int64_t arg2) SafeInt64MultByClang() argument
149 SafeInt64Mult(std::int64_t arg1, std::int64_t arg2) SafeInt64Mult() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DfatarrowfunctionsOptionalArgs.js32 (arg1, arg2) => 12;
33 (arg1 = 1, arg2 =3) => 13;
34 (arg1?, arg2?) => 14;
35 (arg1: number, arg2: number) => 15;
36 (arg1: number = 0, arg2: number = 1) => 16;
37 (arg1?: number, arg2?: number) => 17;
38 (arg1, ...arg2: number[]) => 18;
39 (arg1, arg2?: number) => 19;
109 ((arg1, arg2?) => 0) + '' + ((arg1,arg2
[all...]
H A DtsxStatelessFunctionComponentsWithTypeArguments3.js9 function Baz<T extends {b: number}, U extends {a: boolean, b:string}>(arg1: T, arg2: U) {
11 let a1 = <OverloadComponent {...arg2} ignore-pro="hello world" />;
12 let a2 = <OverloadComponent {...arg2} />;
15 let a5 = <OverloadComponent {...arg2} ignore-prop="hello" {...arg1} />;
16 let a6 = <OverloadComponent {...arg2} ignore-prop {...arg1} />;
20 declare function Link<U>(l: {func: (arg1:U, arg2: string)=>void}): JSX.Element;
31 function Baz(arg1, arg2) {
33 var a1 = <OverloadComponent {...arg2} ignore-pro="hello world"/>;
34 var a2 = <OverloadComponent {...arg2}/>;
37 var a5 = <OverloadComponent {...arg2} ignor
[all...]
H A DvoidReturnLambdaValue.js2 function foo(arg1, arg2, callback:(v1,v2,v3) => void):void {
3 return callback(arg1, arg2, arg2);
7 function foo(arg1, arg2, callback) {
8 return callback(arg1, arg2, arg2);
H A DdeclarationsForIndirectTypeAliasReference.js32 arg2 = MAP,
49 function doSome(arg1, arg2, arg3) {
50 if (arg2 === void 0) { arg2 = MAP; }
67 declare function doSome(arg1: string, arg2?: StringHash, arg3?: StringHash2): void;
/third_party/node/deps/v8/src/third_party/valgrind/
H A Dvalgrind.h712 #define CALL_FN_v_WW(fnptr, arg1,arg2) \
714 CALL_FN_W_WW(_junk,fnptr,arg1,arg2); } while (0)
716 #define CALL_FN_v_WWW(fnptr, arg1,arg2,arg3) \
718 CALL_FN_W_WWW(_junk,fnptr,arg1,arg2,arg3); } while (0)
720 #define CALL_FN_v_WWWW(fnptr, arg1,arg2,arg3,arg4) \
722 CALL_FN_W_WWWW(_junk,fnptr,arg1,arg2,arg3,arg4); } while (0)
724 #define CALL_FN_v_5W(fnptr, arg1,arg2,arg3,arg4,arg5) \
726 CALL_FN_W_5W(_junk,fnptr,arg1,arg2,arg3,arg4,arg5); } while (0)
728 #define CALL_FN_v_6W(fnptr, arg1,arg2,arg3,arg4,arg5,arg6) \
730 CALL_FN_W_6W(_junk,fnptr,arg1,arg2,arg
[all...]
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dtrace.h289 # define OSSL_TRACE2(category, format, arg1, arg2) \
290 OSSL_TRACEV(category, (trc_out, format, arg1, arg2))
291 # define OSSL_TRACE3(category, format, arg1, arg2, arg3) \
292 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3))
293 # define OSSL_TRACE4(category, format, arg1, arg2, arg3, arg4) \
294 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4))
295 # define OSSL_TRACE5(category, format, arg1, arg2, arg3, arg4, arg5) \
296 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5))
297 # define OSSL_TRACE6(category, format, arg1, arg2, arg3, arg4, arg5, arg6) \
298 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg
[all...]
/third_party/openssl/include/openssl/
H A Dtrace.h289 # define OSSL_TRACE2(category, format, arg1, arg2) \
290 OSSL_TRACEV(category, (trc_out, format, arg1, arg2))
291 # define OSSL_TRACE3(category, format, arg1, arg2, arg3) \
292 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3))
293 # define OSSL_TRACE4(category, format, arg1, arg2, arg3, arg4) \
294 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4))
295 # define OSSL_TRACE5(category, format, arg1, arg2, arg3, arg4, arg5) \
296 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5))
297 # define OSSL_TRACE6(category, format, arg1, arg2, arg3, arg4, arg5, arg6) \
298 OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg
[all...]
/third_party/libinput/include/valgrind/
H A Dvalgrind.h1202 #define CALL_FN_v_WW(fnptr, arg1,arg2) \
1204 CALL_FN_W_WW(_junk,fnptr,arg1,arg2); } while (0)
1206 #define CALL_FN_v_WWW(fnptr, arg1,arg2,arg3) \
1208 CALL_FN_W_WWW(_junk,fnptr,arg1,arg2,arg3); } while (0)
1210 #define CALL_FN_v_WWWW(fnptr, arg1,arg2,arg3,arg4) \
1212 CALL_FN_W_WWWW(_junk,fnptr,arg1,arg2,arg3,arg4); } while (0)
1214 #define CALL_FN_v_5W(fnptr, arg1,arg2,arg3,arg4,arg5) \
1216 CALL_FN_W_5W(_junk,fnptr,arg1,arg2,arg3,arg4,arg5); } while (0)
1218 #define CALL_FN_v_6W(fnptr, arg1,arg2,arg3,arg4,arg5,arg6) \
1220 CALL_FN_W_6W(_junk,fnptr,arg1,arg2,arg
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/gtest/
H A Ddjpeg-gtest-wrapper.cpp74 std::string arg2 = "int"; in TEST_P() local
84 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST_P()
107 std::string arg2 = "int"; in TEST() local
116 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
136 std::string arg2 = "int"; in TEST() local
146 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
166 std::string arg2 = "int"; in TEST() local
174 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
194 std::string arg2 = "int"; in TEST() local
205 &arg1[0], &arg2[ in TEST()
225 std::string arg2 = "int"; TEST() local
254 std::string arg2 = "int"; TEST() local
285 std::string arg2 = "int"; TEST() local
315 std::string arg2 = "int"; TEST() local
344 std::string arg2 = "-ppm"; TEST() local
370 std::string arg2 = "int"; TEST() local
402 std::string arg2 = "int"; TEST() local
433 std::string arg2 = "int"; TEST() local
463 std::string arg2 = "int"; TEST() local
491 std::string arg2 = "fast"; TEST() local
516 std::string arg2 = "fast"; TEST() local
543 std::string arg2 = "int"; TEST() local
574 std::string arg2 = "int"; TEST() local
603 std::string arg2 = "fast"; TEST() local
628 std::string arg2 = "fast"; TEST() local
655 std::string arg2 = "int"; TEST() local
680 std::string arg2 = "int"; TEST() local
707 std::string arg2 = "int"; TEST() local
737 std::string arg2 = "int"; TEST() local
769 std::string arg2 = "float"; TEST() local
798 std::string arg2 = "fast"; TEST() local
824 std::string arg2 = "int"; TEST() local
853 std::string arg2 = "int"; TEST() local
883 std::string arg2 = "int"; TEST() local
[all...]
H A Dcjpeg-gtest-wrapper.cpp42 std::string arg2 = "-dct"; in TEST() local
51 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
71 std::string arg2 = "2x1"; in TEST() local
80 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
102 std::string arg2 = "2x2"; in TEST() local
114 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
135 std::string arg2 = "-dct"; in TEST() local
142 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
162 std::string arg2 = "2x2"; in TEST() local
173 &arg1[0], &arg2[ in TEST()
193 std::string arg2 = "3x2"; TEST() local
226 std::string arg2 = "3x2"; TEST() local
256 std::string arg2 = "int"; TEST() local
283 std::string arg2 = "1x1"; TEST() local
313 std::string arg2 = "int"; TEST() local
343 std::string arg2 = "int"; TEST() local
370 std::string arg2 = "int"; TEST() local
398 std::string arg2 = "int"; TEST() local
[all...]
H A Djpegtran-gtest-wrapper.cpp42 std::string arg2 = "all"; in TEST() local
50 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
70 std::string arg2 = "120x90+20+50"; in TEST() local
78 &arg1[0], &arg2[0], &arg3[0], &arg4[0], &arg5[0], in TEST()
99 std::string arg2 = "-outfile"; in TEST() local
104 &arg1[0], &arg2[0], &arg3[0], &arg4[0] in TEST()
123 std::string arg2 = output_path.MaybeAsASCII(); in TEST() local
127 &arg1[0], &arg2[0], &arg3[0] in TEST()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DPixelPipeline.cpp383 Vector4s *arg2 = nullptr;
458 case TextureStage::SOURCE_TEXTURE: arg2 = &texture; break;
459 case TextureStage::SOURCE_CONSTANT: arg2 = &constant; break;
460 case TextureStage::SOURCE_CURRENT: arg2 = &current; break;
461 case TextureStage::SOURCE_DIFFUSE: arg2 = &diffuse; break;
462 case TextureStage::SOURCE_SPECULAR: arg2 = &specular; break;
463 case TextureStage::SOURCE_TEMP: arg2 = &temp; break;
464 case TextureStage::SOURCE_TFACTOR: arg2 = &tfactor; break;
523 mod2.x = SubSat(Short4(0x1000), arg2->x);
524 mod2.y = SubSat(Short4(0x1000), arg2
[all...]
/third_party/ltp/testcases/kernel/containers/libclone/
H A Dlibclone.c21 int (*fn2) (void *arg), void *arg2) in do_clone_tests()
31 ret = fn2(arg2); in do_clone_tests()
40 int (*fn2) (void *arg), void *arg2) in do_unshare_tests()
83 ret = fn2(arg2); in do_unshare_tests()
90 int (*fn2) (void *arg), void *arg2) in do_plain_tests()
102 ret = fn2(arg2); in do_plain_tests()
128 int (*fn2) (void *arg), void *arg2) in do_clone_unshare_tests()
132 return do_plain_tests(fn1, arg1, fn2, arg2); in do_clone_unshare_tests()
134 return do_clone_tests(clone_flags, fn1, arg1, fn2, arg2); in do_clone_unshare_tests()
136 return do_unshare_tests(clone_flags, fn1, arg1, fn2, arg2); in do_clone_unshare_tests()
19 do_clone_tests(unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_clone_tests() argument
38 do_unshare_tests(unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_unshare_tests() argument
89 do_plain_tests(int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_plain_tests() argument
126 do_clone_unshare_tests(int use_clone, unsigned long clone_flags, int (*fn1) (void *arg), void *arg1, int (*fn2) (void *arg), void *arg2) do_clone_unshare_tests() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dx86_64cpuid.pl26 ($arg1,$arg2,$arg3,$arg4)=$win64?("%rcx","%rdx","%r8", "%r9") : # Win64 order
47 .Lspin: leaq ($arg2,%rax),%r8
247 cmp \$15,$arg2
249 cmp \$0,$arg2
253 sub \$1,$arg2
263 lea -1($arg2),$arg2
268 lea -8($arg2),$arg2
269 test \$-8,$arg2
[all...]
/third_party/openssl/crypto/
H A Dx86_64cpuid.pl26 ($arg1,$arg2,$arg3,$arg4)=$win64?("%rcx","%rdx","%r8", "%r9") : # Win64 order
47 .Lspin: leaq ($arg2,%rax),%r8
247 cmp \$15,$arg2
249 cmp \$0,$arg2
253 sub \$1,$arg2
263 lea -1($arg2),$arg2
268 lea -8($arg2),$arg2
269 test \$-8,$arg2
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/backend/
H A Dfunction-ptr-xtype.c11 int foo(void *fn, int arg1, int arg2);
12 int foo(void *fn, int arg1, int arg2) in foo() argument
16 res += ((binop_t)fn)(arg1, arg2); in foo()
24 int bar(int (*fn)(int), int arg1, int arg2);
25 int bar(int (*fn)(int), int arg1, int arg2) in bar() argument
29 res += ((binop_t)fn)(arg1, arg2); in bar()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-object.c171 ecma_value_t arg2) /**< routine's second argument */ in ecma_builtin_object_object_set_prototype_of()
180 if (!ecma_is_value_object (arg2) && !ecma_is_value_null (arg2)) in ecma_builtin_object_object_set_prototype_of()
198 status = ecma_proxy_object_set_prototype_of (obj_p, arg2); in ecma_builtin_object_object_set_prototype_of()
208 status = ecma_op_ordinary_object_set_prototype_of (obj_p, arg2); in ecma_builtin_object_object_set_prototype_of()
235 ecma_value_t arg2) /**< routine's second argument */ in ecma_builtin_object_object_set_proto()
244 if (!ecma_is_value_object (arg2) && !ecma_is_value_null (arg2)) in ecma_builtin_object_object_set_proto()
262 status = ecma_proxy_object_set_prototype_of (obj_p, arg2); in ecma_builtin_object_object_set_proto()
272 status = ecma_op_ordinary_object_set_prototype_of (obj_p, arg2); in ecma_builtin_object_object_set_proto()
170 ecma_builtin_object_object_set_prototype_of(ecma_value_t arg1, ecma_value_t arg2) ecma_builtin_object_object_set_prototype_of() argument
234 ecma_builtin_object_object_set_proto(ecma_value_t arg1, ecma_value_t arg2) ecma_builtin_object_object_set_proto() argument
759 ecma_builtin_object_object_define_properties(ecma_object_t *obj_p, ecma_value_t arg2) ecma_builtin_object_object_define_properties() argument
865 ecma_builtin_object_object_create(ecma_value_t arg1, ecma_value_t arg2) ecma_builtin_object_object_create() argument
1069 ecma_builtin_object_object_is(ecma_value_t arg1, ecma_value_t arg2) ecma_builtin_object_object_is() argument
1096 ecma_value_t arg2 = arguments_list_p[1]; ecma_builtin_object_dispatch_routine() local
[all...]
/third_party/rust/crates/clap/tests/derive/
H A Dsubcommands.rs343 arg2: i32, in update_subcommands()
348 arg2: i32, in update_subcommands()
352 let mut opt = Opt::Command1(Command1 { arg1: 12, arg2: 14 }); in update_subcommands()
361 let mut opt = Opt::Command1(Command1 { arg1: 12, arg2: 14 }); in update_subcommands()
369 let mut opt = Opt::Command1(Command1 { arg1: 12, arg2: 14 }); in update_subcommands()
390 arg2: i32, in update_subcommands_explicit_required()
395 arg2: i32, in update_subcommands_explicit_required()
399 let mut opt = Opt::Command1(Command1 { arg1: 12, arg2: 14 }); in update_subcommands_explicit_required()
401 assert_eq!(Opt::Command1(Command1 { arg1: 12, arg2: 14 }), opt); in update_subcommands_explicit_required()
430 arg2 in update_sub_subcommands()
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Ddictionary_generator.cc147 const char* arg2 = arg1 ? &argv[i][2] : nullptr; in main() local
182 arg2 = &argv[i][std::strlen(LONG_ARG_BLOCK_LEN)]; in main()
186 arg2 = &argv[i][std::strlen(LONG_ARG_SLICE_LEN)]; in main()
190 arg2 = &argv[i][std::strlen(LONG_ARG_TARGET_DICT_LEN)]; in main()
194 arg2 = &argv[i][std::strlen(LONG_ARG_MIN_SLICE_POP)]; in main()
198 arg2 = &argv[i][std::strlen(LONG_ARG_CHUNK_LEN)]; in main()
202 arg2 = &argv[i][std::strlen(LONG_ARG_OVERLAP_LEN)]; in main()
212 blockSize = readInt(arg2); in main()
219 sliceLen = readInt(arg2); in main()
226 targetSize = readInt(arg2); in main()
[all...]
/third_party/skia/third_party/externals/dawn/src/common/
H A DPreprocessor.h24 #define DAWN_PP_CONCATENATE(arg1, arg2) DAWN_PP_CONCATENATE_1(arg1, arg2)
25 #define DAWN_PP_CONCATENATE_1(arg1, arg2) DAWN_PP_CONCATENATE_2(arg1, arg2)
26 #define DAWN_PP_CONCATENATE_2(arg1, arg2) arg1##arg2
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
H A Dtest_calling_conv.cpp31 v4si32 arg2 = {4, 5, 6, 7}; in caller_vvvvv() local
36 CALL_AS_TYPE(callee_vvvvv_Ty, Callee)(arg1, arg2, arg3, arg4, arg5); in caller_vvvvv()
41 int64 arg2 = 4; in caller_vlvilvfvdviv() local
54 (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); in caller_vlvilvfvdviv()
67 callee_vvvvv(v4si32 arg1, v4si32 arg2, v4si32 arg3, v4si32 arg4, v4si32 arg5) { in callee_vvvvv() argument
78 callee_vlvilvfvdviv(v4f32 arg1, int64 arg2, v4f32 arg3, int arg4, int64 arg5, in callee_vlvilvfvdviv() argument
/third_party/popt/tests/
H A Dtestit.sh45 run test1 "test1 - 1" "arg1: 1 arg2: (none)" --arg1
46 run test1 "test1 - 2" "arg1: 0 arg2: foo" --arg2 foo
47 run test1 "test1 - 3" "arg1: 1 arg2: something" --arg1 --arg2 something
48 run test1 "test1 - 4" "arg1: 0 arg2: another" --simple another
49 run test1 "test1 - 5" "arg1: 1 arg2: alias" --two
50 run test1 "test1 - 6" "arg1: 1 arg2: (none) rest: --arg2" --arg1 -- --arg2
[all...]

Completed in 18 milliseconds

12345678910>>...21