Home
last modified time | relevance | path

Searched refs:fVal (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
DSkDynamicAnnotations.h73 return SK_ANNOTATE_UNPROTECTED_READ(fVal); in T()
77 SK_ANNOTATE_UNPROTECTED_WRITE(&fVal, val);
82 T fVal;
92 SkTRacyReffable() { SK_ANNOTATE_BENIGN_RACE(&fVal); } in SkTRacyReffable()
95 return fVal;
99 fVal = val;
103 const T* get() const { return &fVal; } in get()
104 T* get() { return &fVal; } in get()
106 const T* operator->() const { return &fVal; }
107 T* operator->() { return &fVal; }
[all …]
/external/chromium_org/third_party/skia/src/gpu/
DGrTemplates.h40 GrAutoTRestore() : fPtr(NULL), fVal() {} in GrAutoTRestore()
45 fVal = *ptr; in GrAutoTRestore()
51 *fPtr = fVal; in ~GrAutoTRestore()
58 *fPtr = fVal; in reset()
61 fVal = *ptr; in reset()
65 T fVal; variable
/external/skia/src/gpu/
DGrTemplates.h40 GrAutoTRestore() : fPtr(NULL), fVal() {} in GrAutoTRestore()
45 fVal = *ptr; in GrAutoTRestore()
51 *fPtr = fVal; in ~GrAutoTRestore()
58 *fPtr = fVal; in reset()
61 fVal = *ptr; in reset()
65 T fVal; variable
/external/chromium_org/third_party/icu/source/common/
Drbbinode.cpp59 fVal = 0; in RBBINode()
88 fVal = other.fVal; in RBBINode()
300 fSerialNum, fFirstPos, fVal); in printNode()
Drbbitblb.cpp105 bofLeaf->fVal = 2; // Reserved value for {bof}. in build()
444 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal); in calcChainedFollowPos()
464 if (endNode->fVal == startNode->fVal) { in calcChainedFollowPos()
507 U_ASSERT(bofNode->fVal == 2); in bofFixup()
524 if (startNode->fVal == bofNode->fVal) { in bofFixup()
623 if ((p->fType == RBBINode::leafChar) && (p->fVal == a)) { in buildStateTable()
723 sd->fAccepting = endMarker->fVal; in flagAcceptingStates()
728 if (sd->fAccepting==-1 && endMarker->fVal != 0) { in flagAcceptingStates()
732 sd->fAccepting = endMarker->fVal; in flagAcceptingStates()
775 sd->fLookAhead = lookAheadNode->fVal; in flagLookAheadStates()
[all …]
Drbbiscan.cpp329 endNode->fVal = fRuleNum; in doParseActions()
444 n->fVal = fRuleNum; in doParseActions()
455 n->fVal = 0; in doParseActions()
466 n->fVal = n->fVal*10 + v; in doParseActions()
Drbbinode.h74 int32_t fVal; // For leafChar nodes, the value. variable
Drbbisetb.cpp365 leafNode->fVal = (unsigned short)val; in addValToSet()
/external/icu/icu4c/source/common/
Drbbinode.cpp59 fVal = 0; in RBBINode()
88 fVal = other.fVal; in RBBINode()
300 fSerialNum, fFirstPos, fVal); in printNode()
Drbbitblb.cpp105 bofLeaf->fVal = 2; // Reserved value for {bof}. in build()
444 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal); in calcChainedFollowPos()
464 if (endNode->fVal == startNode->fVal) { in calcChainedFollowPos()
507 U_ASSERT(bofNode->fVal == 2); in bofFixup()
524 if (startNode->fVal == bofNode->fVal) { in bofFixup()
623 if ((p->fType == RBBINode::leafChar) && (p->fVal == a)) { in buildStateTable()
723 sd->fAccepting = endMarker->fVal; in flagAcceptingStates()
728 if (sd->fAccepting==-1 && endMarker->fVal != 0) { in flagAcceptingStates()
732 sd->fAccepting = endMarker->fVal; in flagAcceptingStates()
775 sd->fLookAhead = lookAheadNode->fVal; in flagLookAheadStates()
[all …]
Drbbiscan.cpp329 endNode->fVal = fRuleNum; in doParseActions()
444 n->fVal = fRuleNum; in doParseActions()
455 n->fVal = 0; in doParseActions()
466 n->fVal = n->fVal*10 + v; in doParseActions()
Drbbinode.h74 int32_t fVal; // For leafChar nodes, the value. variable
Drbbisetb.cpp365 leafNode->fVal = (unsigned short)val; in addValToSet()
/external/chromium_org/third_party/skia/src/utils/
DSkTextureCompressor_ASTC.cpp531 SkTBits(const T val) : fVal(val) { } in SkTBits()
535 return (fVal >> idx) & 1; in operator []()
541 return (fVal >> start) & ((1ULL << ((end - start) + 1)) - 1); in operator ()()
545 const T fVal; member in SkTBits
/external/svox/pico/lib/
Dpicopam.c1491 picoos_single fVal; in f_round() local
1494 fVal = (picoos_single) iVal; in f_round()
1497 if ((fIn - fVal) < (picoos_single) 0.5f) in f_round()
1498 return fVal; in f_round()
1500 return fVal + (picoos_single) 1.0f; in f_round()
1502 if ((fVal - fIn) < (picoos_single) 0.5f) in f_round()
1503 return fVal; in f_round()
1505 return fVal - (picoos_single) 1.0f; in f_round()