Home
last modified time | relevance | path

Searched refs:type3 (Results 1 – 18 of 18) sorted by relevance

/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Dlinux_syscall_support.h830 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
831 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
838 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
839 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
846 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
848 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
864 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
866 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
1038 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
1039 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3) { \
[all …]
/external/linux-tools-perf/perf-3.12.0/arch/parisc/include/asm/
Dunistd.h124 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
125 type name(type1 arg1, type2 arg2, type3 arg3) \
130 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
131 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4) \
137 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \ argument
138 type name(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) \
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Dlinux_syscall_support.h842 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
843 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
850 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
851 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
858 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
860 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
876 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \ argument
878 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
1130 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
1131 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3) { \
[all …]
/external/clang/test/SemaCXX/
Dconstexpr-many-arguments.cpp23 struct type3 struct
25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {} in type3() argument
29 constexpr type3 g argument
/external/chromium_org/v8/test/cctest/
Dtest-types.cc625 TypeHandle type3 = T.Random(); in Function() local
627 TypeHandle function1 = T.Function1(type1, type2, type3); in Function()
628 TypeHandle function2 = T.Function2(type1, type2, type3); in Function()
642 TypeHandle type3 = T.Random(); in Function() local
644 TypeHandle function1 = T.Function1(type1, type2, type3); in Function()
645 TypeHandle function2 = T.Function2(type1, type2, type3); in Function()
655 CheckEqual(type3, function1->AsFunction()->Parameter(0)); in Function()
657 CheckEqual(type3, function2->AsFunction()->Parameter(1)); in Function()
668 TypeHandle type3 = T.Random(); in Function() local
670 TypeHandle function02 = T.Function0(type1, type3); in Function()
[all …]
/external/clang/test/SemaTemplate/
Dms-if-exists.cpp18 typedef int type3; in __if_not_exists() typedef
28 X<int>::type3 i3;
Dcanonical-expr-type.cpp44 typedef T __attribute__((ext_vector_type(N))) type3; typedef
48 void f0(type3); // expected-error{{redeclared}}
/external/chromium_org/content/public/test/
Dtest_notification_tracker.cc64 int type3) { in Check3AndReset() argument
71 events_[2].type == type3; in Check3AndReset()
Dtest_notification_tracker.h62 int type3);
/external/chromium_org/ipc/
Dipc_message_macros.h234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \ argument
235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ())
237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \ argument
238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type2, type3, type4), ())
240 #define IPC_MESSAGE_CONTROL5(msg_class, type1, type2, type3, type4, type5) \ argument
241 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 5, 0, (type1, type2, type3, type4, type5), ())
252 #define IPC_MESSAGE_ROUTED3(msg_class, type1, type2, type3) \ argument
253 IPC_MESSAGE_DECL(ASYNC, ROUTED, msg_class, 3, 0, (type1, type2, type3), ())
255 #define IPC_MESSAGE_ROUTED4(msg_class, type1, type2, type3, type4) \ argument
256 IPC_MESSAGE_DECL(ASYNC, ROUTED, msg_class, 4, 0, (type1, type2, type3, type4), ())
[all …]
/external/clang/test/CodeGenCXX/
Dtype_visibility.cpp155 namespace type3 { namespace
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java216 Type type3) { in make() argument
221 result.set(3, type3); in make()
/external/clang/test/Index/
Dannotate-nested-name-specifier.cpp109 typedef class outer_alias::inner::vector<type>::template rebind<type> type3; typedef
/external/chromium_org/ui/events/gesture_detection/
Dtouch_disposition_gesture_filter_unittest.cc94 EventType type3) { in Gestures() argument
99 gestures[3] = type3; in Gestures()
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c475 SVGA3dShaderRegType type0, type1, type2, type3; in submit_op4() local
482 type3 = SVGA3dShaderGetRegType( src2.base.value ); in submit_op4()
491 ((type3 == SVGA3DREG_CONST && src0.base.num != src3.base.num) || in submit_op4()
495 if (type3 == SVGA3DREG_CONST && in submit_op4()
500 ((type3 == SVGA3DREG_INPUT && src0.base.num != src3.base.num) || in submit_op4()
504 if (type3 == SVGA3DREG_INPUT && in submit_op4()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c475 SVGA3dShaderRegType type0, type1, type2, type3; in submit_op4() local
482 type3 = SVGA3dShaderGetRegType( src2.base.value ); in submit_op4()
491 ((type3 == SVGA3DREG_CONST && src0.base.num != src3.base.num) || in submit_op4()
495 if (type3 == SVGA3DREG_CONST && in submit_op4()
500 ((type3 == SVGA3DREG_INPUT && src0.base.num != src3.base.num) || in submit_op4()
504 if (type3 == SVGA3DREG_INPUT && in submit_op4()
/external/bison/tests/
Dglr-regression.at1640 int type3;
1651 %type <type3> sym3;
1667 glr-regr18.y:27.13-19: error: result type clash on merge function 'merge': <type3> != <type2>
/external/llvm/test/CodeGen/AArch64/
Darm64-vector-ldst.ll7 %type3 = type { <4 x i16> }