Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 25 of 807) sorted by relevance

12345678910>>...33

/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb2/
Dthumb2-jtb.ll8 br label %_getopt_internal.exit.ce
10 codeRepl127.exitStub: ; preds = %_getopt_internal.exit.ce
13 parse_options.exit.loopexit.exitStub: ; preds = %_getopt_internal.exit.ce
16 bb1.i.exitStub: ; preds = %_getopt_internal.exit.ce
19 bb90.i.exitStub: ; preds = %_getopt_internal.exit.ce
22 codeRepl104.exitStub: ; preds = %_getopt_internal.exit.ce
25 codeRepl113.exitStub: ; preds = %_getopt_internal.exit.ce
28 codeRepl51.exitStub: ; preds = %_getopt_internal.exit.ce
31 codeRepl70.exitStub: ; preds = %_getopt_internal.exit.ce
34 codeRepl119.exitStub: ; preds = %_getopt_internal.exit.ce
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb2/
Dthumb2-jtb.ll17 codeRepl127.exitStub: ; preds = %_getopt_internal.exit.ce
25 parse_options.exit.loopexit.exitStub: ; preds = %_getopt_internal.exit.ce
28 bb1.i.exitStub: ; preds = %_getopt_internal.exit.ce
31 bb90.i.exitStub: ; preds = %_getopt_internal.exit.ce
34 codeRepl104.exitStub: ; preds = %_getopt_internal.exit.ce
37 codeRepl113.exitStub: ; preds = %_getopt_internal.exit.ce
40 codeRepl51.exitStub: ; preds = %_getopt_internal.exit.ce
43 codeRepl70.exitStub: ; preds = %_getopt_internal.exit.ce
46 codeRepl119.exitStub: ; preds = %_getopt_internal.exit.ce
49 codeRepl93.exitStub: ; preds = %_getopt_internal.exit.ce
[all …]
/external/llvm/test/CodeGen/Thumb2/
Dthumb2-jtb.ll17 br label %_getopt_internal.exit.ce
19 codeRepl127.exitStub: ; preds = %_getopt_internal.exit.ce
27 parse_options.exit.loopexit.exitStub: ; preds = %_getopt_internal.exit.ce
30 bb1.i.exitStub: ; preds = %_getopt_internal.exit.ce
33 bb90.i.exitStub: ; preds = %_getopt_internal.exit.ce
36 codeRepl104.exitStub: ; preds = %_getopt_internal.exit.ce
39 codeRepl113.exitStub: ; preds = %_getopt_internal.exit.ce
42 codeRepl51.exitStub: ; preds = %_getopt_internal.exit.ce
45 codeRepl70.exitStub: ; preds = %_getopt_internal.exit.ce
48 codeRepl119.exitStub: ; preds = %_getopt_internal.exit.ce
[all …]
/external/guice/core/test/com/google/inject/
DRequireAtInjectOnConstructorsTest.java39 } catch (CreationException ce) { in testNoCxtors_explicitBinding()
40 assertEquals(1, ce.getErrorMessages().size()); in testNoCxtors_explicitBinding()
42 ce.getMessage(), in testNoCxtors_explicitBinding()
63 } catch (ConfigurationException ce) { in testNoCxtors_jitBinding()
65 ce.getMessage(), in testNoCxtors_jitBinding()
84 } catch (CreationException ce) { in testNoCxtors_implicitBinding()
85 assertEquals(1, ce.getErrorMessages().size()); in testNoCxtors_implicitBinding()
87 ce.getMessage(), in testNoCxtors_implicitBinding()
113 } catch (CreationException ce) { in testNoCxtors_inheritedByPrivateModules()
114 assertEquals(1, ce.getErrorMessages().size()); in testNoCxtors_inheritedByPrivateModules()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationCompare.java36 long ce = left.nextCE(); in compareUpToQuaternary() local
37 leftPrimary = ce >>> 32; in compareUpToQuaternary()
44 left.setCurrentCE(ce & 0xffffffff00000000L); in compareUpToQuaternary()
46 ce = left.nextCE(); in compareUpToQuaternary()
47 leftPrimary = ce >>> 32; in compareUpToQuaternary()
60 long ce = right.nextCE(); in compareUpToQuaternary() local
61 rightPrimary = ce >>> 32; in compareUpToQuaternary()
68 right.setCurrentCE(ce & 0xffffffff00000000L); in compareUpToQuaternary()
70 ce = right.nextCE(); in compareUpToQuaternary()
71 rightPrimary = ce >>> 32; in compareUpToQuaternary()
[all …]
DCollationFastLatin.java685 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { in nextPair() argument
686 if(ce >= MIN_LONG || ce < CONTRACTION) { in nextPair()
687 return ce; // simple or special mini CE in nextPair()
688 } else if(ce >= EXPANSION) { in nextPair()
689 int index = NUM_FAST_CHARS + (ce & INDEX_MASK); in nextPair()
694 int index = NUM_FAST_CHARS + (ce & INDEX_MASK); in nextPair()
730 ce = table[index + 1]; in nextPair()
733 result = ce; in nextPair()
735 result = ((long)table[index + 2] << 16) | ce; in nextPair()
742 int ce = pair & 0xffff; in getPrimaries() local
[all …]
DCollationBuilder.java281 long ce; in getSpecialResetPosition() local
308 ce = rootElements.getLastTertiaryCE(); in getSpecialResetPosition()
331 ce = rootElements.getFirstSecondaryCE(); in getSpecialResetPosition()
336 ce = rootElements.getLastSecondaryCE(); in getSpecialResetPosition()
340 ce = rootElements.getFirstPrimaryCE(); in getSpecialResetPosition()
344 ce = rootElements.lastCEWithPrimaryBefore(variableTop + 1); in getSpecialResetPosition()
347 ce = rootElements.firstCEWithPrimaryAtLeast(variableTop + 1); in getSpecialResetPosition()
354 ce = rootElements.firstCEWithPrimaryAtLeast( in getSpecialResetPosition()
358 ce = baseData.getSingleCE(0x4e00); in getSpecialResetPosition()
365 ce = Collation.makeCE(Collation.FIRST_TRAILING_PRIMARY); in getSpecialResetPosition()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationCompare.java40 long ce = left.nextCE(); in compareUpToQuaternary() local
41 leftPrimary = ce >>> 32; in compareUpToQuaternary()
48 left.setCurrentCE(ce & 0xffffffff00000000L); in compareUpToQuaternary()
50 ce = left.nextCE(); in compareUpToQuaternary()
51 leftPrimary = ce >>> 32; in compareUpToQuaternary()
64 long ce = right.nextCE(); in compareUpToQuaternary() local
65 rightPrimary = ce >>> 32; in compareUpToQuaternary()
72 right.setCurrentCE(ce & 0xffffffff00000000L); in compareUpToQuaternary()
74 ce = right.nextCE(); in compareUpToQuaternary()
75 rightPrimary = ce >>> 32; in compareUpToQuaternary()
[all …]
DCollationFastLatin.java689 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { in nextPair() argument
690 if(ce >= MIN_LONG || ce < CONTRACTION) { in nextPair()
691 return ce; // simple or special mini CE in nextPair()
692 } else if(ce >= EXPANSION) { in nextPair()
693 int index = NUM_FAST_CHARS + (ce & INDEX_MASK); in nextPair()
698 int index = NUM_FAST_CHARS + (ce & INDEX_MASK); in nextPair()
734 ce = table[index + 1]; in nextPair()
737 result = ce; in nextPair()
739 result = ((long)table[index + 2] << 16) | ce; in nextPair()
746 int ce = pair & 0xffff; in getPrimaries() local
[all …]
DCollationBuilder.java285 long ce; in getSpecialResetPosition() local
312 ce = rootElements.getLastTertiaryCE(); in getSpecialResetPosition()
335 ce = rootElements.getFirstSecondaryCE(); in getSpecialResetPosition()
340 ce = rootElements.getLastSecondaryCE(); in getSpecialResetPosition()
344 ce = rootElements.getFirstPrimaryCE(); in getSpecialResetPosition()
348 ce = rootElements.lastCEWithPrimaryBefore(variableTop + 1); in getSpecialResetPosition()
351 ce = rootElements.firstCEWithPrimaryAtLeast(variableTop + 1); in getSpecialResetPosition()
358 ce = rootElements.firstCEWithPrimaryAtLeast( in getSpecialResetPosition()
362 ce = baseData.getSingleCE(0x4e00); in getSpecialResetPosition()
369 ce = Collation.makeCE(Collation.FIRST_TRAILING_PRIMARY); in getSpecialResetPosition()
[all …]
/external/toolchain-utils/binary_search_tool/
Drun_bisect_test.py16 def populate_good_files(top_dir, ce, bisect_dir=DEFAULT_BISECT_DIR): argument
20 status = ce.RunCommand(cmd)
27 status = ce.RunCommand(script)
41 status = ce.RunCommand(cmd)
45 def populate_bad_files(top_dir, ce, bisect_dir=DEFAULT_BISECT_DIR): argument
49 status = ce.RunCommand(cmd)
56 status = ce.RunCommand(script)
70 status = ce.RunCommand(cmd)
74 def run_main_bisection_test(top_dir, ce): argument
76 status = ce.RunCommand(test_script)
[all …]
/external/icu/icu4c/source/i18n/
Dcollationcompare.cpp49 int64_t ce = left.nextCE(errorCode); in compareUpToQuaternary() local
50 leftPrimary = (uint32_t)(ce >> 32); in compareUpToQuaternary()
57 left.setCurrentCE(ce & INT64_C(0xffffffff00000000)); in compareUpToQuaternary()
59 ce = left.nextCE(errorCode); in compareUpToQuaternary()
60 leftPrimary = (uint32_t)(ce >> 32); in compareUpToQuaternary()
74 int64_t ce = right.nextCE(errorCode); in compareUpToQuaternary() local
75 rightPrimary = (uint32_t)(ce >> 32); in compareUpToQuaternary()
82 right.setCurrentCE(ce & INT64_C(0xffffffff00000000)); in compareUpToQuaternary()
84 ce = right.nextCE(errorCode); in compareUpToQuaternary()
85 rightPrimary = (uint32_t)(ce >> 32); in compareUpToQuaternary()
[all …]
Ducoleitr.cpp47 uint32_t ce; member
65 void put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode);
88 void RCEBuffer::put(uint32_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) in put() argument
110 buffer[bufferIndex].ce = ce; in put()
150 void PCEBuffer::put(uint64_t ce, int32_t ixLow, int32_t ixHigh, UErrorCode &errorCode) in put() argument
172 buffer[bufferIndex].ce = ce; in put()
217 uint64_t UCollationPCE::processCE(uint32_t ce) in processCE() argument
226 tertiary = ucol_tertiaryOrder(ce); in processCE()
230 secondary = ucol_secondaryOrder(ce); in processCE()
234 primary = ucol_primaryOrder(ce); in processCE()
[all …]
/external/toolchain-utils/
Dremote_gcc_build.py55 ce = command_executer.GetCommandExecuter()
57 _, branches, _ = ce.RunCommandWOutput(command, print_to_console=False)
92 ce = command_executer.GetCommandExecuter()
93 _, buildinfo, _ = ce.RunCommandWOutput(commands, print_to_console=False)
145 ce = command_executer.GetCommandExecuter()
147 _, out, _ = ce.RunCommandWOutput(ls_cmd, print_to_console=True)
156 if ce.RunCommand(cmd):
171 ce = command_executer.GetCommandExecuter()
172 return ce.RunCommand(commands)
177 ce = command_executer.GetCommandExecuter()
[all …]
Dremote_test.py46 ce = command_executer.GetCommandExecuter()
47 ce.CrosRunCommand(
54 ce.CopyFiles(
60 ce.CopyFiles(
66 ce.CopyFiles(
73 ce.CopyFiles(
82 ce.CopyFiles(
89 ce.CopyFiles(
96 board = ce.CrosLearnBoard(options.chromeos_root, options.remote)
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
DConnectionEventTest.java39 ConnectionEvent ce = new ConnectionEvent(ipc); in testConstructorConnection() local
40 assertSame(ipc, ce.getSource()); in testConstructorConnection()
41 assertNull(ce.getSQLException()); in testConstructorConnection()
52 ConnectionEvent ce = new ConnectionEvent(ipc, null); in testConstructorConnectionSQLException() local
53 assertSame(ipc, ce.getSource()); in testConstructorConnectionSQLException()
54 assertNull(ce.getSQLException()); in testConstructorConnectionSQLException()
57 ce = new ConnectionEvent(ipc, e); in testConstructorConnectionSQLException()
58 assertSame(ipc, ce.getSource()); in testConstructorConnectionSQLException()
59 assertSame(e, ce.getSQLException()); in testConstructorConnectionSQLException()
68 ConnectionEvent ce = new ConnectionEvent(ipc, e); in testSerializationSelf() local
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCollationElementIterator.java155 public final static int primaryOrder(int ce) { in primaryOrder() argument
156 return (ce >>> 16) & 0xffff; in primaryOrder()
165 public final static int secondaryOrder(int ce) { in secondaryOrder() argument
166 return (ce >>> 8) & 0xff; in secondaryOrder()
175 public final static int tertiaryOrder(int ce) { in tertiaryOrder() argument
176 return ce & 0xff; in tertiaryOrder()
188 private static final boolean ceNeedsTwoParts(long ce) { in ceNeedsTwoParts() argument
189 return (ce & 0xffff00ff003fL) != 0; in ceNeedsTwoParts()
332 long ce = iter_.nextCE(); local
333 if (ce == Collation.NO_CE) {
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DCollationElementIterator.java158 public final static int primaryOrder(int ce) { in primaryOrder() argument
159 return (ce >>> 16) & 0xffff; in primaryOrder()
169 public final static int secondaryOrder(int ce) { in secondaryOrder() argument
170 return (ce >>> 8) & 0xff; in secondaryOrder()
180 public final static int tertiaryOrder(int ce) { in tertiaryOrder() argument
181 return ce & 0xff; in tertiaryOrder()
193 private static final boolean ceNeedsTwoParts(long ce) { in ceNeedsTwoParts() argument
194 return (ce & 0xffff00ff003fL) != 0; in ceNeedsTwoParts()
342 long ce = iter_.nextCE(); local
343 if (ce == Collation.NO_CE) {
[all …]
/external/tensorflow/tensorflow/core/common_runtime/
Dcollective_executor_mgr.cc43 CollectiveExecutor* ce = nullptr; in FindOrCreate() local
48 ce = it->second; in FindOrCreate()
50 ce = Create(step_id); in FindOrCreate()
51 executor_table_[step_id] = ce; in FindOrCreate()
53 ce->Ref(); in FindOrCreate()
55 return ce; in FindOrCreate()
66 CollectiveExecutor* ce = nullptr; in Cleanup() local
71 ce = it->second; in Cleanup()
75 if (ce) ce->Unref(); in Cleanup()
/external/skia/src/gpu/effects/
DGrBezierEffect.cpp30 const GrConicEffect& ce = primProc.cast<GrConicEffect>(); in setData() local
32 if (!ce.viewMatrix().isIdentity() && !fViewMatrix.cheapEqualTo(ce.viewMatrix())) { in setData()
33 fViewMatrix = ce.viewMatrix(); in setData()
39 if (ce.color() != fColor) { in setData()
40 pdman.set4fv(fColorUniform, 1, ce.color().vec()); in setData()
41 fColor = ce.color(); in setData()
44 if (ce.coverageScale() != 0xff && ce.coverageScale() != fCoverageScale) { in setData()
45 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(ce.coverageScale())); in setData()
46 fCoverageScale = ce.coverageScale(); in setData()
48 this->setTransformDataHelper(ce.localMatrix(), pdman, &transformIter); in setData()
[all …]
/external/skqp/src/gpu/effects/
DGrBezierEffect.cpp30 const GrConicEffect& ce = primProc.cast<GrConicEffect>(); in setData() local
32 if (!ce.viewMatrix().isIdentity() && !fViewMatrix.cheapEqualTo(ce.viewMatrix())) { in setData()
33 fViewMatrix = ce.viewMatrix(); in setData()
39 if (ce.color() != fColor) { in setData()
40 pdman.set4fv(fColorUniform, 1, ce.color().vec()); in setData()
41 fColor = ce.color(); in setData()
44 if (ce.coverageScale() != 0xff && ce.coverageScale() != fCoverageScale) { in setData()
45 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(ce.coverageScale())); in setData()
46 fCoverageScale = ce.coverageScale(); in setData()
48 this->setTransformDataHelper(ce.localMatrix(), pdman, &transformIter); in setData()
[all …]
/external/libcxx/test/std/containers/views/span.iterators/
Dend.pass.cpp27 typename Span::const_iterator ce = s.cend(); in testConstexprSpan() local
31 ret = ret && (ce == s.cbegin()); in testConstexprSpan()
37 ret = ret && (ce != s.cbegin()); in testConstexprSpan()
39 ret = ret && (&*(ce-1) == last); in testConstexprSpan()
43 ret = ret && ((ce - s.cbegin()) == s.size()); in testConstexprSpan()
45 ret = ret && (e == ce); in testConstexprSpan()
53 typename Span::const_iterator ce = s.cend(); in testRuntimeSpan() local
57 assert(ce == s.cbegin()); in testRuntimeSpan()
63 assert(ce != s.cbegin()); in testRuntimeSpan()
65 assert( &*(ce-1) == last); in testRuntimeSpan()
[all …]
Drend.pass.cpp27 typename Span::const_reverse_iterator ce = s.crend(); in testConstexprSpan() local
31 ret = ret && (ce == s.crbegin()); in testConstexprSpan()
36 ret = ret && (ce != s.crbegin()); in testConstexprSpan()
40 ret = ret && ((ce - s.crbegin()) == s.size()); in testConstexprSpan()
42 ret = ret && (e == ce); in testConstexprSpan()
50 typename Span::const_reverse_iterator ce = s.crend(); in testRuntimeSpan() local
54 assert(ce == s.crbegin()); in testRuntimeSpan()
59 assert(ce != s.crbegin()); in testRuntimeSpan()
63 assert((ce - s.crbegin()) == s.size()); in testRuntimeSpan()
65 assert(e == ce); in testRuntimeSpan()
/external/guice/core/test/com/google/inject/multibindings/
DProvidesIntoTest.java272 } catch (CreationException ce) { in testArrayKeys_unwrapValuesTrue()
273 assertEquals(1, ce.getErrorMessages().size()); in testArrayKeys_unwrapValuesTrue()
275 ce.getMessage(), in testArrayKeys_unwrapValuesTrue()
350 } catch (CreationException ce) { in testProvidesIntoSetWithMapKey()
351 assertEquals(1, ce.getErrorMessages().size()); in testProvidesIntoSetWithMapKey()
353 ce.getMessage(), in testProvidesIntoSetWithMapKey()
373 } catch (CreationException ce) { in testProvidesIntoOptionalWithMapKey()
374 assertEquals(1, ce.getErrorMessages().size()); in testProvidesIntoOptionalWithMapKey()
376 ce.getMessage(), in testProvidesIntoOptionalWithMapKey()
395 } catch (CreationException ce) { in testProvidesIntoMapWithoutMapKey()
[all …]
/external/icu/icu4c/source/test/intltest/
Dcolldata.cpp106 void CEList::add(uint32_t ce, UErrorCode &status) in add() argument
131 ces[listSize++] = ce; in add()
252 void put(uint32_t ce, UnicodeString *string, UErrorCode &status);
253 StringList *getStringList(uint32_t ce) const;
256 void putStringList(uint32_t ce, StringList *stringList, UErrorCode &status);
283 void CEToStringsMap::put(uint32_t ce, UnicodeString *string, UErrorCode &status) in put() argument
285 StringList *strings = getStringList(ce); in put()
295 putStringList(ce, strings, status); in put()
301 StringList *CEToStringsMap::getStringList(uint32_t ce) const in getStringList()
303 return (StringList *) uhash_iget(map, ce); in getStringList()
[all …]

12345678910>>...33