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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
signal2name.c 4 #define CASE(x) case x: return #x
10 CASE(SIGALRM);
11 CASE(SIGBUS);
12 CASE(SIGCHLD);
13 CASE(SIGCONT);
14 CASE(SIGFPE);
15 CASE(SIGHUP);
16 CASE(SIGILL);
17 CASE(SIGINT)
    [all...]
errno2name.c 32 #define CASE(x) case x: return #x
40 CASE(E2BIG);
43 CASE(EACCES);
46 CASE(EADDRINUSE);
49 CASE(EADDRNOTAVAIL);
52 CASE(EADV);
55 CASE(EAFNOSUPPORT);
58 CASE(EAGAIN);
61 CASE(EALREADY)
    [all...]
  /external/strace/tests-m32/
signal2name.c 4 #define CASE(x) case x: return #x
10 CASE(SIGALRM);
11 CASE(SIGBUS);
12 CASE(SIGCHLD);
13 CASE(SIGCONT);
14 CASE(SIGFPE);
15 CASE(SIGHUP);
16 CASE(SIGILL);
17 CASE(SIGINT)
    [all...]
errno2name.c 32 #define CASE(x) case x: return #x
40 CASE(E2BIG);
43 CASE(EACCES);
46 CASE(EADDRINUSE);
49 CASE(EADDRNOTAVAIL);
52 CASE(EADV);
55 CASE(EAFNOSUPPORT);
58 CASE(EAGAIN);
61 CASE(EALREADY)
    [all...]
  /external/strace/tests-mx32/
signal2name.c 4 #define CASE(x) case x: return #x
10 CASE(SIGALRM);
11 CASE(SIGBUS);
12 CASE(SIGCHLD);
13 CASE(SIGCONT);
14 CASE(SIGFPE);
15 CASE(SIGHUP);
16 CASE(SIGILL);
17 CASE(SIGINT)
    [all...]
errno2name.c 32 #define CASE(x) case x: return #x
40 CASE(E2BIG);
43 CASE(EACCES);
46 CASE(EADDRINUSE);
49 CASE(EADDRNOTAVAIL);
52 CASE(EADV);
55 CASE(EAFNOSUPPORT);
58 CASE(EAGAIN);
61 CASE(EALREADY)
    [all...]
  /external/icu/icu4c/source/test/intltest/
ittrans.cpp 30 #define CASE(id,test) case id: \
43 CASE(0, TransliteratorTest);
44 CASE(1, TransliteratorAPITest);
45 CASE(2, CompoundTransliteratorTest);
46 CASE(3, TransliteratorRoundTripTest);
47 CASE(4, JamoTest);
48 CASE(5, TransliteratorErrorTest);
49 CASE(6, ReplaceableTest);
51 CASE(7, UnicodeFilterLogicTest)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
assembly_grammar.cpp 88 #define CASE(NAME) { SpvOp##NAME, #NAME }
91 CASE(SConvert),
92 CASE(FConvert),
93 CASE(ConvertFToS),
94 CASE(ConvertSToF),
95 CASE(ConvertFToU),
96 CASE(ConvertUToF),
97 CASE(UConvert),
98 CASE(ConvertPtrToU),
99 CASE(ConvertUToPtr)
    [all...]
name_mapper.cpp 104 case SpvBuiltIn##name: \
108 case SpvBuiltIn##name: \
111 #define CASE(name) \
112 case SpvBuiltIn##name: \
144 CASE(WorkDim)
145 CASE(GlobalSize)
146 CASE(EnqueuedWorkgroupSize)
147 CASE(GlobalOffset)
148 CASE(GlobalLinearId)
149 CASE(SubgroupSize
    [all...]
  /system/chre/apps/chqts/src/general_test/
app.cc 193 #define CASE(testName, className) \
194 case TestNames::testName: \
198 CASE(kHelloWorld, HelloWorldTest);
199 CASE(kSimpleHeapAlloc, SimpleHeapAllocTest);
200 CASE(kHeapAllocStress, HeapAllocStressTest);
201 CASE(kGetTime, GetTimeTest);
202 CASE(kEventBetweenApps0, EventBetweenApps0);
203 CASE(kEventBetweenApps1, EventBetweenApps1);
204 CASE(kSendEvent, SendEventTest);
205 CASE(kBasicAccelerometer, BasicAccelerometerTest)
    [all...]
  /external/deqp/modules/egl/
teglColorClearTests.cpp 82 #define CASE(NAME, DESC, BITS, NUMCFG) { NAME, DESC, BITS, renderable<BITS>, NUMCFG }
86 CASE("gles1", "Color clears using GLES1", EGL_OPENGL_ES_BIT, 1),
87 CASE("gles2", "Color clears using GLES2", EGL_OPENGL_ES2_BIT, 1),
88 CASE("gles3", "Color clears using GLES3", EGL_OPENGL_ES3_BIT, 1),
89 CASE("vg", "Color clears using OpenVG", EGL_OPENVG_BIT, 1)
94 CASE("gles1", "Color clears using multiple GLES1 contexts to shared surface", EGL_OPENGL_ES_BIT, 3),
95 CASE("gles2", "Color clears using multiple GLES2 contexts to shared surface", EGL_OPENGL_ES2_BIT, 3),
96 CASE("gles3", "Color clears using multiple GLES3 contexts to shared surface", EGL_OPENGL_ES3_BIT, 3),
97 CASE("vg", "Color clears using multiple OpenVG contexts to shared surface", EGL_OPENVG_BIT, 3),
98 CASE("gles1_gles2", "Color clears using multiple APIs to shared surface", EGL_OPENGL_ES_BIT|EGL_OP (…)
    [all...]
  /external/v8/src/interpreter/
bytecode-operands.cc 17 case AccumulatorUse::kNone:
19 case AccumulatorUse::kRead:
21 case AccumulatorUse::kWrite:
23 case AccumulatorUse::kReadWrite:
32 #define CASE(Name, _) \
33 case OperandType::k##Name: \
35 OPERAND_TYPE_LIST(CASE)
36 #undef CASE
44 #define CASE(Name, _) \
45 case OperandScale::k##Name:
    [all...]
bytecodes.cc 63 #define CASE(Name, ...) \
64 case Bytecode::k##Name: \
66 BYTECODE_LIST(CASE)
67 #undef CASE
124 case Bytecode::kJumpIfToBooleanTrue:
126 case Bytecode::kJumpIfToBooleanFalse:
128 case Bytecode::kJumpIfToBooleanTrueConstant:
130 case Bytecode::kJumpIfToBooleanFalseConstant:
142 #define CASE(Name, ...) case Bytecode::k##Name
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
stm32l4xx-fix-vldm-dp.s 10 @ VLDM CASE #1
16 @ VLDM CASE #2
24 @ VLDM CASE #3
stm32l4xx-fix-vldm.s 10 @ VLDM CASE #1
16 @ VLDM CASE #2
24 @ VLDM CASE #3
stm32l4xx-fix-ldm.s 10 @ LDM CASE #1 (used when rx is in upper_list)
17 @ LDM CASE #1 bis (used when rx is in upper_list and pc is
24 @ LDM CASE #2 (used when rx is not in upper_list)
32 @ LDM CASE #2 bis (used when rx is in lower_list)
40 @ LDM CASE #2 ter (used when rx is not in upper_list and pc is
48 @ LDM CASE #2 quater (used when rx is in lower_list and pc is
56 @ LDM CASE #3 (used when rx is not in upper_list)
65 @ LDM CASE #3 bis (used when rx is not in upper_list and pc is
72 @ LDM CASE #4 (used when pc is not in reglist and rx is in
79 @ LDM CASE #5 (used when pc is not in reglist and rx is not i
    [all...]
  /external/skia/src/opts/
SkXfermode_opts.h 175 auto darkSrc = d*(sa + (s2 - sa)*(Sk4f(1) - m)), // Used in case 1.
176 darkDst = (m4*m4 + m4)*(m - Sk4f(1)) + Sk4f(7)*m, // Used in case 2.
177 liteDst = m.sqrt() - m, // Used in case 3.
178 liteSrc = d*sa + da*(s2-sa)*(Sk4f(4)*d <= da).thenElse(darkDst, liteDst); // Case 2 or 3?
181 auto colors = s*ida + d*isa + (s2 <= sa).thenElse(darkSrc, liteSrc); // Case 1 or 2/3?
272 #define CASE(Xfermode) \
273 case SkBlendMode::k##Xfermode: return new Sk4pxXfermode<Xfermode>()
274 CASE(Clear);
275 CASE(Src);
276 CASE(Dst)
    [all...]
  /external/skqp/src/opts/
SkXfermode_opts.h 175 auto darkSrc = d*(sa + (s2 - sa)*(Sk4f(1) - m)), // Used in case 1.
176 darkDst = (m4*m4 + m4)*(m - Sk4f(1)) + Sk4f(7)*m, // Used in case 2.
177 liteDst = m.sqrt() - m, // Used in case 3.
178 liteSrc = d*sa + da*(s2-sa)*(Sk4f(4)*d <= da).thenElse(darkDst, liteDst); // Case 2 or 3?
181 auto colors = s*ida + d*isa + (s2 <= sa).thenElse(darkSrc, liteSrc); // Case 1 or 2/3?
272 #define CASE(Xfermode) \
273 case SkBlendMode::k##Xfermode: return new Sk4pxXfermode<Xfermode>()
274 CASE(Clear);
275 CASE(Src);
276 CASE(Dst)
    [all...]
  /external/skia/src/core/
SkMiniRecorder.cpp 98 #define CASE(Type) \
99 case State::k##Type: \
107 case State::kEmpty:
110 CASE(DrawPath);
111 CASE(DrawRect);
112 CASE(DrawTextBlob);
116 #undef CASE
120 #define CASE(Type) \
121 case State::k##Type: { \
129 case State::kEmpty: return
    [all...]
  /external/skqp/src/core/
SkMiniRecorder.cpp 98 #define CASE(Type) \
99 case State::k##Type: \
107 case State::kEmpty:
110 CASE(DrawPath);
111 CASE(DrawRect);
112 CASE(DrawTextBlob);
116 #undef CASE
120 #define CASE(Type) \
121 case State::k##Type: { \
129 case State::kEmpty: return
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
inplace_ops_functor_gpu.cu.cc 63 #define CASE(type) \
64 case DataTypeToEnum<type>::value: \
68 CASE(float)
69 CASE(double)
70 CASE(Eigen::half)
71 // Using TF_CALL_GPU_NUMBER_TYPES(CASE) results in the compiler complaining
72 // that CASE is not defined...hence the above construction
73 #undef CASE
  /external/libxml2/os400/
xmlcatalog.cmd 14 CASE(*MIXED) EXPR(*YES) MIN(1) SPCVAL((*NEW '')) +
28 CASE(*MIXED) EXPR(*YES) DFT(*STDOUT) +
59 CASE(*MIXED) MAX(64) EXPR(*YES) +
81 CASE(*MIXED) PROMPT('Original reference/file name')
83 CASE(*MIXED) PROMPT('Replacement entity URI')
88 CASE(*MIXED) PROMPT('SGML catalog file name')
90 CASE(*MIXED) PROMPT('SGML definition')
95 CASE(*MIXED) EXPR(*YES) MAX(150) +
101 CASE(*MIXED) EXPR(*YES) MAX(150) DFT(*DEFAULT) +
xmllint.cmd 14 CASE(*MIXED) EXPR(*YES) MIN(1) +
21 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
32 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
48 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
55 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
60 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
67 CASE(*MIXED) EXPR(*YES) MAX(64) +
85 CASE(*MIXED) EXPR(*YES) PASSVAL(*NULL) +
  /external/v8/src/
utils.h 77 case 8: bits++; // Fall through.
78 case 4: bits++; // Fall through.
79 case 2: bits++; // Fall through.
80 case 1: break;
112 case 8: bits++; // Fall through.
113 case 4: bits++; // Fall through.
114 case 2: bits++; // Fall through.
115 case 1: break;
    [all...]
  /external/tensorflow/tensorflow/core/framework/
types.cc 53 case DT_INVALID:
55 case DT_FLOAT:
57 case DT_DOUBLE:
59 case DT_INT32:
61 case DT_UINT32:
63 case DT_UINT8:
65 case DT_UINT16:
67 case DT_INT16:
69 case DT_INT8:
71 case DT_STRING
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>