/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/ |
D | PowellOptimizer.java | 102 double fVal = computeObjectiveValue(x); in doOptimize() local 107 double fX = fVal; in doOptimize() 116 fX2 = fVal; in doOptimize() 119 fVal = line.getValueAtOptimum(); in doOptimize() 124 if ((fX2 - fVal) > delta) { in doOptimize() 125 delta = fX2 - fVal; in doOptimize() 131 final RealPointValuePair current = new RealPointValuePair(x, fVal); in doOptimize() 134 return (fVal < fX) ? current : previous; in doOptimize() 136 return (fVal > fX) ? current : previous; in doOptimize() 151 double t = 2 * (fX + fX2 - 2 * fVal); in doOptimize() [all …]
|
/external/skia/src/core/ |
D | SkTHash.h | 340 fVal.fStorage = that.fVal.fStorage; 347 new (&fVal.fStorage) T(that.fVal.fStorage); 363 fVal.fStorage = std::move(that.fVal.fStorage); 370 new (&fVal.fStorage) T(std::move(that.fVal.fStorage)); 379 T& operator*() & { return fVal.fStorage; } 380 const T& operator*() const& { return fVal.fStorage; } 381 T&& operator*() && { return std::move(fVal.fStorage); } 382 const T&& operator*() const&& { return std::move(fVal.fStorage); } 386 new (&fVal.fStorage) T(std::move(v)); in emplace() 397 fVal.fStorage.~T(); in reset() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBITableBuilder.java | 140 bofLeaf.fVal = 2; // Reserved value for {bof}. in buildForwardTable() 450 int c = this.fRB.fSetBuilder.getFirstChar(endNode.fVal); in calcChainedFollowPos() 468 if (endNode.fVal == startNode.fVal) { in calcChainedFollowPos() 507 Assert.assrt(bofNode.fVal == 2); in bofFixup() 520 if (startNode.fVal == bofNode.fVal) { in bofFixup() 579 if ((p.fType == RBBINode.leafChar) && (p.fVal == a)) { in buildStateTable() 642 int ruleNum = node.fVal; // Set when rule was originally parsed. in mapLookAheadRules() 671 int ruleNum = node.fVal; // Set when rule was originally parsed. in mapLookAheadRules() 708 sd.fAccepting = fLookAheadRuleMap[endMarker.fVal]; in flagAcceptingStates() 713 … if (sd.fAccepting==RBBIDataWrapper.ACCEPTING_UNCONDITIONAL && endMarker.fVal != 0) { in flagAcceptingStates() [all …]
|
D | RBBINode.java | 89 int fVal; // For leafChar nodes, the value. field in RBBINode 139 fVal = other.fVal; 292 RBBINode.printInt(n.fVal, 7);
|
D | RBBIRuleScanner.java | 266 endNode.fVal = fRuleNum; in doParseActions() 395 n.fVal = fRuleNum; in doParseActions() 406 n.fVal = 0; in doParseActions() 416 n.fVal = n.fVal * 10 + v; in doParseActions()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBITableBuilder.java | 139 bofLeaf.fVal = 2; // Reserved value for {bof}. in buildForwardTable() 449 int c = this.fRB.fSetBuilder.getFirstChar(endNode.fVal); in calcChainedFollowPos() 467 if (endNode.fVal == startNode.fVal) { in calcChainedFollowPos() 506 Assert.assrt(bofNode.fVal == 2); in bofFixup() 519 if (startNode.fVal == bofNode.fVal) { in bofFixup() 578 if ((p.fType == RBBINode.leafChar) && (p.fVal == a)) { in buildStateTable() 641 int ruleNum = node.fVal; // Set when rule was originally parsed. in mapLookAheadRules() 670 int ruleNum = node.fVal; // Set when rule was originally parsed. in mapLookAheadRules() 707 sd.fAccepting = fLookAheadRuleMap[endMarker.fVal]; in flagAcceptingStates() 712 … if (sd.fAccepting==RBBIDataWrapper.ACCEPTING_UNCONDITIONAL && endMarker.fVal != 0) { in flagAcceptingStates() [all …]
|
D | RBBINode.java | 88 int fVal; // For leafChar nodes, the value. field in RBBINode 138 fVal = other.fVal; 291 RBBINode.printInt(n.fVal, 7);
|
D | RBBIRuleScanner.java | 265 endNode.fVal = fRuleNum; in doParseActions() 394 n.fVal = fRuleNum; in doParseActions() 405 n.fVal = 0; in doParseActions() 415 n.fVal = n.fVal * 10 + v; in doParseActions()
|
D | RBBISetBuilder.java | 409 leafNode.fVal = val; in addValToSet()
|
/external/cronet/third_party/icu/source/common/ |
D | rbbinode.cpp | 65 fVal = 0; in RBBINode() 94 fVal = other.fVal; in RBBINode() 321 node->fFirstPos, node->fVal); in printNode()
|
D | rbbitblb.cpp | 111 bofLeaf->fVal = 2; // Reserved value for {bof}. in buildForwardTable() 466 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal); in calcChainedFollowPos() 485 if (endNode->fVal == startNode->fVal) { in calcChainedFollowPos() 528 U_ASSERT(bofNode->fVal == 2); in bofFixup() 545 if (startNode->fVal == bofNode->fVal) { in bofFixup() 644 if ((p->fType == RBBINode::leafChar) && (p->fVal == a)) { in buildStateTable() 736 int32_t ruleNum = node->fVal; // Set when rule was originally parsed. in mapLookAheadRules() 766 int32_t ruleNum = node->fVal; // Set when rule was originally parsed. in mapLookAheadRules() 814 sd->fAccepting = fLookAheadRuleMap->elementAti(endMarker->fVal); in flagAcceptingStates() 819 if (sd->fAccepting==ACCEPTING_UNCONDITIONAL && endMarker->fVal != 0) { in flagAcceptingStates() [all …]
|
D | rbbiscan.cpp | 347 endNode->fVal = fRuleNum; in doParseActions() 500 n->fVal = fRuleNum; in doParseActions() 514 n->fVal = 0; in doParseActions() 525 n->fVal = n->fVal*10 + v; in doParseActions()
|
D | rbbinode.h | 77 int32_t fVal; // For leafChar nodes, the value. variable
|
/external/icu/icu4c/source/common/ |
D | rbbinode.cpp | 65 fVal = 0; in RBBINode() 94 fVal = other.fVal; in RBBINode() 321 node->fFirstPos, node->fVal); in printNode()
|
D | rbbitblb.cpp | 111 bofLeaf->fVal = 2; // Reserved value for {bof}. in buildForwardTable() 466 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal); in calcChainedFollowPos() 485 if (endNode->fVal == startNode->fVal) { in calcChainedFollowPos() 528 U_ASSERT(bofNode->fVal == 2); in bofFixup() 545 if (startNode->fVal == bofNode->fVal) { in bofFixup() 644 if ((p->fType == RBBINode::leafChar) && (p->fVal == a)) { in buildStateTable() 736 int32_t ruleNum = node->fVal; // Set when rule was originally parsed. in mapLookAheadRules() 766 int32_t ruleNum = node->fVal; // Set when rule was originally parsed. in mapLookAheadRules() 814 sd->fAccepting = fLookAheadRuleMap->elementAti(endMarker->fVal); in flagAcceptingStates() 819 if (sd->fAccepting==ACCEPTING_UNCONDITIONAL && endMarker->fVal != 0) { in flagAcceptingStates() [all …]
|
D | rbbiscan.cpp | 347 endNode->fVal = fRuleNum; in doParseActions() 500 n->fVal = fRuleNum; in doParseActions() 514 n->fVal = 0; in doParseActions() 525 n->fVal = n->fVal*10 + v; in doParseActions()
|
D | rbbinode.h | 77 int32_t fVal; // For leafChar nodes, the value. variable
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/util/ |
D | parse_number.cpp | 163 HexFloat<FloatProxy<float>> fVal(0.0f); in ParseAndEncodeFloatingPointNumber() local 164 if (!ParseNumber(text, &fVal)) { in ParseAndEncodeFloatingPointNumber() 168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
|
/external/deqp-deps/SPIRV-Tools/source/util/ |
D | parse_number.cpp | 163 HexFloat<FloatProxy<float>> fVal(0.0f); in ParseAndEncodeFloatingPointNumber() local 164 if (!ParseNumber(text, &fVal)) { in ParseAndEncodeFloatingPointNumber() 168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | parse_number.cpp | 163 HexFloat<FloatProxy<float>> fVal(0.0f); in ParseAndEncodeFloatingPointNumber() local 164 if (!ParseNumber(text, &fVal)) { in ParseAndEncodeFloatingPointNumber() 168 emit(BitwiseCast<uint32_t>(fVal)); in ParseAndEncodeFloatingPointNumber()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_devicecs.cpp | 24 float NormalizeChannel(float fVal) { in NormalizeChannel() argument 25 return pdfium::clamp(fVal, 0.0f, 1.0f); in NormalizeChannel()
|
/external/icu/libicu/cts_headers/ |
D | rbbinode.h | 77 int32_t fVal; // For leafChar nodes, the value. variable
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_misc.cpp | 892 Value* fVal = VIMMED1(0.0f); in VCVT_FIXED_SI_F32() local 896 fVal = SI_TO_FP(ASHR(vFixed, VIMMED1(numFracBits)), mSimdFP32Ty, name); in VCVT_FIXED_SI_F32() 905 return FADD(fVal, fFrac, name); in VCVT_FIXED_SI_F32() 961 Value* fVal = VIMMED1(0.0f); in VCVT_FIXED_UI_F32() local 965 fVal = UI_TO_FP(LSHR(vFixed, VIMMED1(numFracBits)), mSimdFP32Ty, name); in VCVT_FIXED_UI_F32() 974 return FADD(fVal, fFrac, name); in VCVT_FIXED_UI_F32()
|
/external/skia/src/gpu/ |
D | BufferWriter.h | 162 const T& fVal; member 301 w << repeat.fVal;
|
/external/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.cpp | 136 ValRef(skvm::Val& val) : fVal(val) {} in ValRef() 138 ValRef& operator=(ValRef v) { fVal = v.fVal; return *this; } in operator =() 139 ValRef& operator=(skvm::Val v) { fVal = v; return *this; } in operator =() 140 ValRef& operator=(skvm::F32 v) { fVal = v.id; return *this; } in operator =() 141 ValRef& operator=(skvm::I32 v) { fVal = v.id; return *this; } in operator =() 143 operator skvm::Val() { return fVal; } in operator skvm::Val() 145 skvm::Val& fVal; member
|