/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cShaderAtomicCounterOpsTests.hpp | 53 AtomicOperation(std::string function, glw::GLuint inputValue, glw::GLuint paramValue, in AtomicOperation() argument 56 , m_inputValue(inputValue) in AtomicOperation() 109 AtomicOperationAdd(glw::GLuint inputValue, glw::GLuint paramValue) in AtomicOperationAdd() argument 110 : AtomicOperation("atomicCounterAdd", inputValue, paramValue, 0U, true) in AtomicOperationAdd() 125 AtomicOperationSubtract(glw::GLuint inputValue, glw::GLuint paramValue) in AtomicOperationSubtract() argument 126 : AtomicOperation("atomicCounterSubtract", inputValue, paramValue, 0U, true) in AtomicOperationSubtract() 141 AtomicOperationMin(glw::GLuint inputValue, glw::GLuint paramValue) in AtomicOperationMin() argument 142 : AtomicOperation("atomicCounterMin", inputValue, paramValue) in AtomicOperationMin() 157 AtomicOperationMax(glw::GLuint inputValue, glw::GLuint paramValue) in AtomicOperationMax() argument 158 : AtomicOperation("atomicCounterMax", inputValue, paramValue) in AtomicOperationMax() [all …]
|
D | gl4cShaderAtomicCounterOpsTests.cpp | 374 GLuint inputValue = atomicOp->getInputValue(); in fillAtomicCounterBuffer() local 383 *dataPtr = inputValue; in fillAtomicCounterBuffer()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
D | FormattedPlaceholder.java | 19 private final Object inputValue; field in FormattedPlaceholder 31 public FormattedPlaceholder(Object inputValue, FormattedValue formattedValue) { in FormattedPlaceholder() argument 35 this.inputValue = inputValue; in FormattedPlaceholder() 49 return inputValue; in getInput()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemStorageBufferTests.cpp | 731 const tcu::UVec4& inputValue, in calculateAtomicOpData() argument 741 refValue = inputValue + tcu::UVec4(atomicArg); in calculateAtomicOpData() 747 …:UVec4(std::min(inputValue.x(), atomicArg), std::min(inputValue.y(), atomicArg), std::min(inputVal… in calculateAtomicOpData() 753 …:UVec4(std::max(inputValue.x(), atomicArg), std::max(inputValue.y(), atomicArg), std::max(inputVal… in calculateAtomicOpData() 759 …refValue = tcu::UVec4(inputValue.x() & atomicArg, inputValue.y() & atomicArg, inputValue.z() & ato… in calculateAtomicOpData() 765 …refValue = tcu::UVec4(inputValue.x() | atomicArg, inputValue.y() | atomicArg, inputValue.z() | ato… in calculateAtomicOpData() 771 …refValue = tcu::UVec4(inputValue.x() ^ atomicArg, inputValue.y() ^ atomicArg, inputValue.z() ^ ato… in calculateAtomicOpData() 784 deUint32 selectedChange = inputValue[selectedNdx]; in calculateAtomicOpData() 786 refValue = inputValue; in calculateAtomicOpData() 869 const tcu::UVec4& inputValue = testData[ndx].input; in createAtomicStorageBufferTests() local [all …]
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderUniformIntegerFunctionTests.cpp | 45 …UniformIntegerFunctionCase (Context& context, const char* description, int inputValue, glu::Pre… 68 …formIntegerFunctionCase(Context& context, const char* description, int inputValue, glu::Precision … in UniformIntegerFunctionCase() argument 71 , m_input(inputValue) in UniformIntegerFunctionCase() 153 …FindMSBEdgeCase(Context& context, int inputValue, glu::Precision precision, glu::ShaderType shader… in FindMSBEdgeCase() argument 154 : UniformIntegerFunctionCase(context, "findMSB", inputValue, precision, shaderType) in FindMSBEdgeCase() 170 …FindLSBEdgeCase(Context& context, int inputValue, glu::Precision precision, glu::ShaderType shader… in FindLSBEdgeCase() argument 171 : UniformIntegerFunctionCase(context, "findLSB", inputValue, precision, shaderType) in FindLSBEdgeCase()
|
D | es31fShaderAtomicOpTests.cpp | 292 …const int inputValue = *(const deInt32*)((const deUint8*)inputs + inputStride*(groupOffset+localNd… in verify() local 293 valueSum += inputValue; in verify() 304 …const int inputValue = *(const deInt32*)((const deUint8*)inputs + inputStride*(groupOffset+localN… in verify() local 307 if (!de::inRange(outputValue, (int)m_initialValue, valueSum-inputValue)) in verify() 310 << ": expected value in range [" << m_initialValue << ", " << (valueSum-inputValue) in verify() 325 if (outputValue == valueSum-inputValue) in verify() 446 …const deInt32 inputValue = *(const deInt32*)((const deUint8*)inputs + inputStride*(groupOffset+loc… in verify() local 447 inValues.insert(inputValue); in verify() 448 minValue = de::min(inputValue, minValue); in verify() 528 …const deInt32 inputValue = *(const deInt32*)((const deUint8*)inputs + inputStride*(groupOffset+loc… in verify() local [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/locale/locale_gtest/ |
D | locale_strtof_l_test.cpp | 19 const char* inputValue = "100.1"; variable 22 float endresult = strtof_l(inputValue, &lastptr, locale);
|
/third_party/weex-loader/src/ |
D | util.js | 405 function mergeJson(inputValue, outputValue) { argument 407 return inputValue; 409 const typeInput = typeof inputValue; 411 Object.keys(inputValue).forEach(function (key) { 412 const contentElementMerge = mergeJson(inputValue[key], outputValue[key]);
|
/third_party/icu/icu4c/source/test/intltest/ |
D | units_test.cpp | 33 const double inputValue; member 273 const double inputValue; in testConverter() member 361 double inverseMaxDelta = 1e-6 * uprv_fabs(testCase.inputValue); in testConverter() 362 if (testCase.inputValue == 0) { in testConverter() 377 testCase.expectedValue, converter.convert(testCase.inputValue), maxDelta); in testConverter() 380 testCase.inputValue, converter.convertInverse(testCase.expectedValue), inverseMaxDelta); in testConverter() 389 testCase.expectedValue, converter2.convert(testCase.inputValue), maxDelta); in testConverter() 392 … testCase.inputValue, converter2.convertInverse(testCase.expectedValue), inverseMaxDelta); in testConverter() 714 double inputValue; in testComplexUnitsConverterSorting() member 756 auto actual = converter.convert(testCase.inputValue, nullptr, status); in testComplexUnitsConverterSorting()
|
D | dcfmapts.cpp | 598 double inputValue; in TestScale() member 638 pat.format(testData[i].inputValue, resultStr); in TestScale() 639 …message = UnicodeString("Unexpected output for ") + testData[i].inputValue + UnicodeString(" and s… in TestScale()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/ |
D | UnitsTest.java | 190 double inputValue; 194 …public TestCase(String message, String inputUnit, String outputUnit, double inputValue, Measure[] … 198 this.inputValue = inputValue; 236 …List<Measure> actualMeasures = converter.convert(BigDecimal.valueOf(testCase.inputValue), null).me… 631 String inputValue = fields[4]; 643 this.insertData(category, usage, region, inputUnit, inputValue, outputs); 650 String inputValue, 657 this.input = new BigDecimal(inputValue);
|
/third_party/icu/icu4c/source/i18n/ |
D | units_converter.h | 199 double convert(double inputValue) const; 208 double convertInverse(double inputValue) const;
|
D | units_converter.cpp | 588 double UnitsConverter::convert(double inputValue) const { in convert() 590 inputValue + conversionRate_.sourceOffset; // Reset the input to the target zero index. in convert() 606 double UnitsConverter::convertInverse(double inputValue) const { in convertInverse() 607 double result = inputValue; in convertInverse()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | units_converter.h | 193 double convert(double inputValue) const; 202 double convertInverse(double inputValue) const;
|
D | units_converter.cpp | 581 double UnitsConverter::convert(double inputValue) const { in convert() 583 inputValue + conversionRate_.sourceOffset; // Reset the input to the target zero index. in convert() 602 double UnitsConverter::convertInverse(double inputValue) const { in convertInverse() 603 double result = inputValue; in convertInverse()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | units_converter.h | 199 double convert(double inputValue) const; 208 double convertInverse(double inputValue) const;
|
D | units_converter.cpp | 588 double UnitsConverter::convert(double inputValue) const { in convert() 590 inputValue + conversionRate_.sourceOffset; // Reset the input to the target zero index. in convert() 606 double UnitsConverter::convertInverse(double inputValue) const { in convertInverse() 607 double result = inputValue; in convertInverse()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
D | glcPackedPixelsTests.cpp | 2507 int inputValue = inputBufferInt[NUM_FLOAT_PIXEL_COUNT * i + j]; in compare() local 2514 inputValue = clampUnsignedValue(bit3 - 1, inputValue); in compare() 2516 inputValue = clampSignedValue(bit3, inputValue); in compare() 2519 inputValue = clampSignedValue(copyFormatBitTable[j], inputValue); in compare() 2522 inputValue = clampUnsignedValue(bit2, inputValue); in compare() 2524 inputValue = clampSignedValue(bit2, inputValue); in compare() 2526 if (inputValue != outputValue) in compare() 2529 << NUM_FLOAT_PIXEL_COUNT * i + j << ": " << inputValue in compare() 2536 unsigned int inputValue = inputBufferUint[NUM_FLOAT_PIXEL_COUNT * i + j + 6]; in compare() local 2539 inputValue = clampUnsignedValue(bit3, inputValue); in compare() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
D | UnitsConverter.java | 113 public BigDecimal convert(BigDecimal inputValue) { in convert() argument 114 BigDecimal result = inputValue.multiply(this.conversionRate).add(offset); in convert() 127 public BigDecimal convertInverse(BigDecimal inputValue) { in convertInverse() argument 128 BigDecimal result = inputValue; in convertInverse()
|
/third_party/typescript/tests/baselines/reference/ |
D | jsxComplexSignatureHasApplicabilityError.js | 69 export type OnInputChangeHandler = (inputValue: string) => string; 184 inputValue?: string;
|
D | jsxComplexSignatureHasApplicabilityError.types | 173 export type OnInputChangeHandler = (inputValue: string) => string; 174 >OnInputChangeHandler : (inputValue: string) => string 175 >inputValue : string 383 inputValue?: string; 384 >inputValue : string | undefined 815 * onInputChange handler: function (inputValue) {}
|
D | jsxComplexSignatureHasApplicabilityError.symbols | 257 export type OnInputChangeHandler = (inputValue: string) => string; 259 >inputValue : Symbol(inputValue, Decl(jsxComplexSignatureHasApplicabilityError.tsx, 67, 36)) 580 inputValue?: string; 581 >inputValue : Symbol(OptionComponentProps.inputValue, Decl(jsxComplexSignatureHasApplicabilityError… 1064 * onInputChange handler: function (inputValue) {}
|
/third_party/typescript/tests/cases/compiler/ |
D | jsxComplexSignatureHasApplicabilityError.tsx | 71 export type OnInputChangeHandler = (inputValue: string) => string; 186 inputValue?: string; 482 * onInputChange handler: function (inputValue) {}
|
/third_party/openGLES/extensions/AMD/ |
D | AMD_shader_ballot.txt | 313 …| genType writeInvocationAMD( | Returns <inputValue> for all active invoc… 314 …| genType inputValue, | sub-group except for the invocation whose… 318 …| genIType inputValue, | for (i = 0; i < gl_SubGroupSizeARB; i++) … 320 …| uint invocationIndex) | writeValue:inputValue; … 322 …| genUType inputValue, | …
|
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
D | AMD_shader_ballot.txt | 313 …| genType writeInvocationAMD( | Returns <inputValue> for all active invoc… 314 …| genType inputValue, | sub-group except for the invocation whose… 318 …| genIType inputValue, | for (i = 0; i < gl_SubGroupSizeARB; i++) … 320 …| uint invocationIndex) | writeValue:inputValue; … 322 …| genUType inputValue, | …
|