/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fBasicComputeShaderTests.cpp | 178 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_UNIFORM, "Input.values"); in iterate() local 179 const InterfaceVariableInfo valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_UNIFORM, valueIndex); in iterate() 215 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_BUFFER_VARIABLE, "Output.values"); in iterate() local 216 const InterfaceVariableInfo valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_BUFFER_VARIABLE, valueIndex); in iterate() 300 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_BUFFER_VARIABLE, "Input.values"); in iterate() local 301 const InterfaceVariableInfo valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_BUFFER_VARIABLE, valueIndex); in iterate() 338 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_BUFFER_VARIABLE, "Output.values"); in iterate() local 339 const InterfaceVariableInfo valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_BUFFER_VARIABLE, valueIndex); in iterate() 404 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_BUFFER_VARIABLE, "InOut.values"); in iterate() local 405 const InterfaceVariableInfo valueInfo = getProgramInterfaceVariableInfo(gl, program.getProgram(), GL_BUFFER_VARIABLE, valueIndex); in iterate() 666 const deUint32 valueIndex = gl.getProgramResourceIndex(program.getProgram(), GL_BUFFER_VARIABLE, "Output.values"); iterate() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/ |
H A D | vktRobustnessUtil.cpp | 226 const deUint32 valueIndex = (deUint32)(2 + scalarNdx); // Do not use 0 or 1 in populateBufferWithTestValues() local 230 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = valueIndex; in populateBufferWithTestValues() 234 reinterpret_cast<deInt32*>(buffer)[scalarNdx] = -deInt32(valueIndex); in populateBufferWithTestValues() 238 reinterpret_cast<float*>(buffer)[scalarNdx] = float(valueIndex); in populateBufferWithTestValues() 242 const deUint32 r = ((valueIndex + 0) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 243 const deUint32 g = ((valueIndex + 1) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 244 const deUint32 b = ((valueIndex + 2) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 245 const deUint32 a = ((valueIndex + 0) & ((2u << 2) - 1u)); in populateBufferWithTestValues()
|
H A D | vktRobustnessBufferAccessTests.cpp | 1272 const deUint32 valueIndex = deUint32(offsetInBytes / 4) + 2; in isExpectedValueFromInBuffer() 1276 return !deMemCmp(valuePtr, &valueIndex, (size_t)valueSize); in isExpectedValueFromInBuffer() 1280 const deInt32 value = -deInt32(valueIndex); in isExpectedValueFromInBuffer() 1285 const float value = float(valueIndex); in isExpectedValueFromInBuffer() 1290 const deUint32 r = ((valueIndex + 0) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1291 const deUint32 g = ((valueIndex + 1) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1292 const deUint32 b = ((valueIndex + 2) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1293 const deUint32 a = ((valueIndex + 0) & ((2u << 2) - 1u)); in isExpectedValueFromInBuffer()
|
H A D | vktRobustBufferAccessWithVariablePointersTests.cpp | 1567 const deUint32 valueIndex = deUint32(offsetInBytes / 4) + 2; in isExpectedValueFromInBuffer() 1571 const deUint32 expectedValues[2] = { valueIndex, valueIndex + 1u }; in isExpectedValueFromInBuffer() 1576 const deInt32 value = -deInt32(valueIndex); in isExpectedValueFromInBuffer() 1583 const float value = float(valueIndex); in isExpectedValueFromInBuffer()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/ |
H A D | vktRobustnessUtil.cpp | 251 const deUint32 valueIndex = (deUint32)(2 + scalarNdx); // Do not use 0 or 1 in populateBufferWithTestValues() local 255 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = valueIndex; in populateBufferWithTestValues() 259 reinterpret_cast<deInt32*>(buffer)[scalarNdx] = -deInt32(valueIndex); in populateBufferWithTestValues() 263 reinterpret_cast<float*>(buffer)[scalarNdx] = float(valueIndex); in populateBufferWithTestValues() 267 const deUint32 r = ((valueIndex + 0) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 268 const deUint32 g = ((valueIndex + 1) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 269 const deUint32 b = ((valueIndex + 2) & ((2u << 10) - 1u)); in populateBufferWithTestValues() 270 const deUint32 a = ((valueIndex + 0) & ((2u << 2) - 1u)); in populateBufferWithTestValues()
|
H A D | vktRobustnessBufferAccessTests.cpp | 1213 const deUint32 valueIndex = deUint32(offsetInBytes / 4) + 2; in isExpectedValueFromInBuffer() 1217 return !deMemCmp(valuePtr, &valueIndex, (size_t)valueSize); in isExpectedValueFromInBuffer() 1221 const deInt32 value = -deInt32(valueIndex); in isExpectedValueFromInBuffer() 1226 const float value = float(valueIndex); in isExpectedValueFromInBuffer() 1231 const deUint32 r = ((valueIndex + 0) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1232 const deUint32 g = ((valueIndex + 1) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1233 const deUint32 b = ((valueIndex + 2) & ((2u << 10) - 1u)); in isExpectedValueFromInBuffer() 1234 const deUint32 a = ((valueIndex + 0) & ((2u << 2) - 1u)); in isExpectedValueFromInBuffer()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff2-interp-cs.hh | 58 valueIndex = valueIndex_; in set_blends() 67 numValues = valueIndex = 0; in reset_blends() 72 unsigned int valueIndex; member
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmUtils.hpp | 193 size_t getValueSize (const size_t valueIndex) const in getValueSize() 195 return sizesBuffer[valueIndex]; in getValueSize()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmUtils.hpp | 193 size_t getValueSize (const size_t valueIndex) const in getValueSize() 195 return sizesBuffer[valueIndex]; in getValueSize()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktRenderPassDepthStencilResolveTests.cpp | 1095 for (deUint32 valueIndex = 0; valueIndex < valuesCount; valueIndex++) in verifyDepth() 1101 deInt32 layerIndex = valueIndex / layerSize; in verifyDepth() 1102 deInt32 inLayerIndex = valueIndex % layerSize; in verifyDepth() 1162 for (deUint32 valueIndex = 0; valueIndex < valuesCount; valueIndex++) in verifyStencil() 1165 deInt32 layerIndex = valueIndex / layerSize; in verifyStencil() 1166 deInt32 inLayerIndex = valueIndex in verifyStencil() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/ |
H A D | vktRenderPassDepthStencilResolveTests.cpp | 1095 for (deUint32 valueIndex = 0; valueIndex < valuesCount; valueIndex++) in verifyDepth() 1101 deInt32 layerIndex = valueIndex / layerSize; in verifyDepth() 1102 deInt32 inLayerIndex = valueIndex % layerSize; in verifyDepth() 1162 for (deUint32 valueIndex = 0; valueIndex < valuesCount; valueIndex++) in verifyStencil() 1165 deInt32 layerIndex = valueIndex / layerSize; in verifyStencil() 1166 deInt32 inLayerIndex = valueIndex in verifyStencil() [all...] |
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/generator/ |
H A D | ResourceFallbackCodeGenerator.java | 139 private void writeStringToStringIndex(Map<String, String> index, Map<String, Integer> keyIndex, Map<String, Integer> valueIndex, String variableName, PrintWriter out) { in writeStringToStringIndex() argument 144 out.println(" " + keyIndex.get(key) + ", " + valueIndex.get(value) + ", // " + key + " -> " + value); in writeStringToStringIndex()
|
/third_party/icu/icu4c/source/common/ |
H A D | messagepattern.cpp | 836 int32_t valueIndex=skipWhiteSpace(index+1); // The ':' is at index. in parsePluralOrSelectStyle() local 837 index=skipDouble(valueIndex); in parsePluralOrSelectStyle() 838 if(index==valueIndex) { in parsePluralOrSelectStyle() 843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle() 844 setParseError(parseError, valueIndex); // Plural offset value too long. in parsePluralOrSelectStyle() 848 parseDouble(valueIndex, index, false, in parsePluralOrSelectStyle()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | messagepattern.cpp | 836 int32_t valueIndex=skipWhiteSpace(index+1); // The ':' is at index. in parsePluralOrSelectStyle() local 837 index=skipDouble(valueIndex); in parsePluralOrSelectStyle() 838 if(index==valueIndex) { in parsePluralOrSelectStyle() 843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle() 844 setParseError(parseError, valueIndex); // Plural offset value too long. in parsePluralOrSelectStyle() 848 parseDouble(valueIndex, index, false, in parsePluralOrSelectStyle()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | messagepattern.cpp | 836 int32_t valueIndex=skipWhiteSpace(index+1); // The ':' is at index. in parsePluralOrSelectStyle() local 837 index=skipDouble(valueIndex); in parsePluralOrSelectStyle() 838 if(index==valueIndex) { in parsePluralOrSelectStyle() 843 if((index-valueIndex)>Part::MAX_LENGTH) { in parsePluralOrSelectStyle() 844 setParseError(parseError, valueIndex); // Plural offset value too long. in parsePluralOrSelectStyle() 848 parseDouble(valueIndex, index, FALSE, in parsePluralOrSelectStyle()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | CollationRuleParser.java | 544 int valueIndex = raw.lastIndexOf(0x20); in parseSetting() 545 if(valueIndex >= 0) { in parseSetting() 546 v = raw.substring(valueIndex + 1); in parseSetting() 547 raw = raw.substring(0, valueIndex); in parseSetting()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/ |
H A D | CollationRuleParser.java | 548 int valueIndex = raw.lastIndexOf(0x20); in parseSetting() 549 if(valueIndex >= 0) { in parseSetting() 550 v = raw.substring(valueIndex + 1); in parseSetting() 551 raw = raw.substring(0, valueIndex); in parseSetting()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | collationruleparser.cpp | 509 int32_t valueIndex = raw.lastIndexOf((UChar)0x20); in parseSetting() local 510 if(valueIndex >= 0) { in parseSetting() 511 v.setTo(raw, valueIndex + 1); in parseSetting() 512 raw.truncate(valueIndex); in parseSetting()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationruleparser.cpp | 511 int32_t valueIndex = raw.lastIndexOf((char16_t)0x20); in parseSetting() local 512 if(valueIndex >= 0) { in parseSetting() 513 v.setTo(raw, valueIndex + 1); in parseSetting() 514 raw.truncate(valueIndex); in parseSetting()
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationruleparser.cpp | 509 int32_t valueIndex = raw.lastIndexOf((UChar)0x20); in parseSetting() local 510 if(valueIndex >= 0) { in parseSetting() 511 v.setTo(raw, valueIndex + 1); in parseSetting() 512 raw.truncate(valueIndex); in parseSetting()
|
/third_party/icu/tools/unicode/c/genprops/ |
H A D | pnamesbuilder.cpp | 356 int32_t valueIndex=valuesIndexOf(values, length, j); in buildValueMap() local 357 int32_t nameOffset= valueIndex>=0 ? nameOffsets.elementAti(valueIndex) : 0; in buildValueMap()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDefaultVertexAttributeTests.cpp | 372 const int valueIndex = gl.glGetAttribLocation(m_program->getProgram(), "a_value"); in renderWithValue() local 387 loadedValue = m_loader->load(gl, (glu::isDataTypeMatrix(m_dataType)) ? (valueIndex + 1) : (valueIndex), v); in renderWithValue()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDefaultVertexAttributeTests.cpp | 449 const int valueIndex = gl.glGetAttribLocation(m_program->getProgram(), "a_value"); in renderWithValue() local 464 loadedValue = m_loader->load(gl, (glu::isDataTypeMatrix(m_dataType)) ? (valueIndex + 1) : (valueIndex), v); in renderWithValue()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | MessagePatternUtil.java | 535 int valueIndex = start; in buildChoiceStyleNode() 541 variant.selector = pattern.getSubstring(pattern.getPart(valueIndex + 1)); in buildChoiceStyleNode()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | MessagePatternUtil.java | 507 int valueIndex = start; in buildChoiceStyleNode() 513 variant.selector = pattern.getSubstring(pattern.getPart(valueIndex + 1)); in buildChoiceStyleNode()
|