HomeSort by relevance Sort by last modified time
    Searched refs:type4 (Results 1 - 13 of 13) sorted by null

  /frameworks/base/cmds/interrupter/
interrupter.h 50 #define CALL_FUNCTION_4(sym, ret, type1, type2, type3, type4) \
51 ret (*real_##sym)(type1, type2, type3, type4) = NULL; \
52 ret sym(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
57 #define CALL_FUNCTION_5(sym, ret, type1, type2, type3, type4, type5) \
58 ret (*real_##sym)(type1, type2, type3, type4, type5) = NULL; \
59 ret sym(type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5) { \
  /external/clang/test/SemaTemplate/
ms-if-exists.cpp 22 typedef T::X type4; typedef
29 X<int>::type4 i4; // expected-error{{no type named 'type4' in 'X<int>'}}
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.c 202 struct lp_type type4; local
220 type4 = type;
221 type4.floating = FALSE;
222 type4.width *= 4;
223 type4.length /= 4;
225 a = LLVMBuildBitCast(builder, a, lp_build_vec_type(bld->gallivm, type4), "");
236 tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type4, shift*type.width), "");
238 tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type4, -shift*type.width), "");
357 struct lp_type type4; local
376 type4 = type
    [all...]
lp_bld_sample_soa.c 1426 struct lp_type type4 = type; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_swizzle.c 202 struct lp_type type4; local
220 type4 = type;
221 type4.floating = FALSE;
222 type4.width *= 4;
223 type4.length /= 4;
225 a = LLVMBuildBitCast(builder, a, lp_build_vec_type(bld->gallivm, type4), "");
236 tmp = LLVMBuildLShr(builder, a, lp_build_const_int_vec(bld->gallivm, type4, shift*type.width), "");
238 tmp = LLVMBuildShl(builder, a, lp_build_const_int_vec(bld->gallivm, type4, -shift*type.width), "");
357 struct lp_type type4; local
376 type4 = type
    [all...]
lp_bld_sample_soa.c 1426 struct lp_type type4 = type; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
linux_syscall_support.h 852 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
853 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
860 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
862 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
878 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
880 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
linux_syscall_support.h 838 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
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, \
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, \
866 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
    [all...]
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 110 typedef class outer_alias::inner::vector<type>::template rebind<type>::other type4; typedef in struct:X6
427 // CHECK: Keyword: "class" [110:11 - 110:16] TypedefDecl=type4:110:80 (Definition)
429 // CHECK: Punctuation: "::" [110:28 - 110:30] TypedefDecl=type4:110:80 (Definition)
431 // CHECK: Punctuation: "::" [110:35 - 110:37] TypedefDecl=type4:110:80 (Definition)
433 // CHECK: Punctuation: "<" [110:43 - 110:44] TypedefDecl=type4:110:80 (Definition)
435 // CHECK: Punctuation: ">" [110:48 - 110:49] TypedefDecl=type4:110:80 (Definition)
436 // CHECK: Punctuation: "::" [110:49 - 110:51] TypedefDecl=type4:110:80 (Definition)
437 // CHECK: Keyword: "template" [110:51 - 110:59] TypedefDecl=type4:110:80 (Definition)
438 // CHECK: Identifier: "rebind" [110:60 - 110:66] TypedefDecl=type4:110:80 (Definition)
439 // CHECK: Punctuation: "<" [110:66 - 110:67] TypedefDecl=type4:110:80 (Definition
    [all...]
  /external/chromium_org/ipc/
ipc_message_macros.h 237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \
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) \
241 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 5, 0, (type1, type2, type3, type4, type5), ())
255 #define IPC_MESSAGE_ROUTED4(msg_class, type1, type2, type3, type4) \
256 IPC_MESSAGE_DECL(ASYNC, ROUTED, msg_class, 4, 0, (type1, type2, type3, type4), ())
258 #define IPC_MESSAGE_ROUTED5(msg_class, type1, type2, type3, type4, type5) \
259 IPC_MESSAGE_DECL(ASYNC, ROUTED, msg_class, 5, 0, (type1, type2, type3, type4, type5), ())
    [all...]
  /external/chromium_org/third_party/gpsd/release-3.1/
gps.h 922 } type4; member in union:ais_t::__anon13100
    [all...]
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 1193 milliseconds