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

  /art/runtime/arch/arm/
context_arm.cc 27 static constexpr uint32_t gZero = 0;
64 DCHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
71 DCHECK_NE(fprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
77 gprs_[R0] = const_cast<uint32_t*>(&gZero);
78 gprs_[R1] = const_cast<uint32_t*>(&gZero);
  /art/runtime/arch/mips/
context_mips.cc 26 static constexpr uint32_t gZero = 0;
70 CHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
77 CHECK_NE(fprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
83 gprs_[V0] = const_cast<uint32_t*>(&gZero);
84 gprs_[V1] = const_cast<uint32_t*>(&gZero);
  /art/runtime/arch/mips64/
context_mips64.cc 26 static constexpr uintptr_t gZero = 0;
61 CHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
68 CHECK_NE(fprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
74 gprs_[V0] = const_cast<uintptr_t*>(&gZero);
75 gprs_[V1] = const_cast<uintptr_t*>(&gZero);
  /art/runtime/arch/x86/
context_x86.cc 27 static constexpr uintptr_t gZero = 0;
70 gprs_[EAX] = const_cast<uintptr_t*>(&gZero);
71 gprs_[EDX] = const_cast<uintptr_t*>(&gZero);
80 CHECK_NE(gprs_[reg], &gZero);
87 CHECK_NE(fprs_[reg], reinterpret_cast<const uint32_t*>(&gZero));
  /art/runtime/arch/x86_64/
context_x86_64.cc 26 static constexpr uintptr_t gZero = 0;
66 gprs_[RAX] = const_cast<uintptr_t*>(&gZero);
67 gprs_[RDX] = const_cast<uintptr_t*>(&gZero);
92 CHECK_NE(gprs_[reg], &gZero);
99 CHECK_NE(fprs_[reg], reinterpret_cast<const uint64_t*>(&gZero));
  /art/runtime/arch/arm64/
context_arm64.cc 29 static constexpr uint64_t gZero = 0;
65 DCHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
72 DCHECK_NE(fprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
78 gprs_[X0] = const_cast<uint64_t*>(&gZero);
  /external/icu/icu4c/source/i18n/
standardplural.cpp 69 static const UChar gZero[] = { 0x7A, 0x65, 0x72, 0x6F };
90 } else if (keyword.compare(gZero, 4) == 0) {
nfrule.cpp 68 static const UChar gZero = 0x0030;
275 if (firstChar >= gZero && firstChar <= gNine && lastChar != gX) {
291 if (c >= gZero && c <= gNine) {
292 val = val * ll_10 + (int32_t)(c - gZero);
320 if (c >= gZero && c <= gNine) {
321 val = val * ll_10 + (int32_t)(c - gZero);
370 if (firstChar == gZero && lastChar == gX) {
378 else if (firstChar == gX && lastChar == gZero) {
665 case kProperFractionRule: result.append(gZero).append(decimalPoint == 0 ? gDot : decimalPoint).append(gX); break;
666 case kMasterRule: result.append(gX).append(decimalPoint == 0 ? gDot : decimalPoint).append(gZero); break
    [all...]
nfsubs.cpp 32 static const UChar gZero = 0x0030;
434 else if (workingDescription.charAt(0) == gPound || workingDescription.charAt(0) ==gZero) {
    [all...]

Completed in 141 milliseconds