/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | r300_fragprog_emit.c | 85 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index) in use_temporary() argument 87 if (index > code->pixsize) in use_temporary() 88 code->pixsize = index; in use_temporary()
|
/third_party/node/deps/undici/src/lib/cache/ |
H A D | cache.js | 11 const { fetching } = require('../fetch/index') 261 let index = 0 269 request: requestList[index], // 7.3.3 275 index++ // 7.3.6
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
H A D | CompilerRegressionTest.java | 72 errors.format("FAILED [%s]: First difference at index %d\n", tc.getName(), diffIndex); in testCompiledBytesEqualExpectedMatcherBytes() 154 private int index = 0; field in CompilerRegressionTest.Sequence 162 return index < seq.length(); in hasNext() 167 return seq.getDigit(index++); in next() 274 // Return the index of the first difference, or -1 is the byte arrays are the same.
|
/third_party/python/Doc/ |
H A D | make.bat | 175 if EXIST "%BUILDDIR%\html\index.html" (
176 echo.Opening "%BUILDDIR%\html\index.html" in the default web browser...
177 start "" "%BUILDDIR%\html\index.html"
|
/third_party/python/Lib/ |
H A D | compileall.py | 238 for index, opt_level in enumerate(optimize): 243 if index > 0 and hardlink_dupes: 244 previous_cfile = opt_cfiles[optimize[index - 1]]
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | sample-util.c | 65 pa_silence_memory((uint8_t*) data+c->index, c->length, spec); in pa_silence_memchunk() 270 ret->index = 0; in pa_silence_memchunk_get() 356 if (fwrite((uint8_t*) p + c->index, 1, c->length, f) != c->length) in pa_memchunk_dump_to_file()
|
/third_party/python/Lib/email/ |
H A D | _parseaddr.py | 105 mm = _monthnames.index(mm) + 1 555 def __getitem__(self, index): 557 return self.addresslist[index]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationUtil.hpp | 390 int index = 0; in elemsStr() local 394 result += std::string() + ", " + (index % wrapLength == 0 ? "\n"+deepIndentation : ""); in elemsStr() 396 index++; in elemsStr()
|
/third_party/skia/third_party/externals/angle2/samples/shader_translator/ |
H A D | shader_translator.cpp | 38 static void PrintVariable(const std::string &prefix, size_t index, const sh::ShaderVariable &var); 492 void PrintVariable(const std::string &prefix, size_t index, const sh::ShaderVariable &var) in PrintVariable() argument 681 static_cast<unsigned int>(index), var.name.c_str(), var.mappedName.c_str(), in PrintVariable()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Display.h | 128 void onSubjectStateChange(angle::SubjectIndex index, angle::SubjectMessage message) override; 265 Error programCacheQuery(EGLint index, 293 const char *queryStringi(const EGLint name, const EGLint index);
|
H A D | ProgramExecutable.h | 248 const LinkedUniform &getUniformByIndex(GLuint index) const 250 ASSERT(index < static_cast<size_t>(mUniforms.size())); 251 return mUniforms[index]; 406 // EXT_blend_func_extended secondary outputs (ones with index 1)
|
H A D | queryutils.h | 157 GLint GetUniformResourceProperty(const Program *program, GLuint index, const GLenum prop); 165 GLuint index, 175 UniformBlockIndex index,
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | cpp_interface_test.cpp | 60 EXPECT_EQ(1u, position.index); in TEST() 119 EXPECT_EQ(0u, position.index); in TEST() 180 EXPECT_EQ(0u, position.index); in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/test/lint/ |
H A D | divergence_analysis_test.cpp | 35 std::cerr << "error: line " << position.index << ": " << message in CLIMessageConsumer() 39 std::cout << "warning: line " << position.index << ": " << message in CLIMessageConsumer() 43 std::cout << "info: line " << position.index << ": " << message in CLIMessageConsumer()
|
/third_party/skia/third_party/externals/spirv-tools/test/tools/ |
H A D | expect.py | 145 def read_word(binary, index, little_endian): 146 """Reads the index-th word from the given binary file.""" 147 word = binary[index * 4:(index + 1) * 4]
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | AttributeLayoutTest.cpp | 141 void enable(unsigned index) const in enable() 144 glVertexAttribPointer(index, mData.getDimension(), mGLType, mNormalized, mStride, in enable() 147 glEnableVertexAttribArray(index); in enable()
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | UniformsPerf.cpp | 155 for (size_t index = 0; index < count; ++index) in GenMatrixData()
|
/third_party/skia/src/codec/ |
H A D | SkBmpRLECodec.cpp | 173 uint8_t index) { in setPixel() 184 dstRow[dstX] = fColorTable->operator[](index); in setPixel() 189 dstRow[dstX] = SkPixel32ToPixel16(fColorTable->operator[](index)); in setPixel() 505 // In RLE8 or RLE4, the second byte read gives the index in the in decodeRLE() 507 // RLE8 has one color index that gets repeated in decodeRLE() 171 setPixel(void* dst, size_t dstRowBytes, const SkImageInfo& dstInfo, uint32_t x, uint32_t y, uint8_t index) setPixel() argument
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_descriptor.h | 449 // Returns the loop at a particular |index|. The |index| must be in bounds, 451 inline Loop& GetLoopByIndex(size_t index) const { in GetLoopByIndex() 452 assert(loops_.size() > index && in GetLoopByIndex() 454 return *loops_[index]; in GetLoopByIndex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_descriptor.h | 449 // Returns the loop at a particular |index|. The |index| must be in bounds, 451 inline Loop& GetLoopByIndex(size_t index) const { in GetLoopByIndex() 452 assert(loops_.size() > index && in GetLoopByIndex() 454 return *loops_[index]; in GetLoopByIndex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | cpp_interface_test.cpp | 60 EXPECT_EQ(1u, position.index); in TEST() 119 EXPECT_EQ(0u, position.index); in TEST() 180 EXPECT_EQ(0u, position.index); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/lint/ |
H A D | divergence_analysis_test.cpp | 35 std::cerr << "error: line " << position.index << ": " << message in CLIMessageConsumer() 39 std::cout << "warning: line " << position.index << ": " << message in CLIMessageConsumer() 43 std::cout << "info: line " << position.index << ": " << message in CLIMessageConsumer()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/ |
H A D | expect.py | 145 def read_word(binary, index, little_endian): 146 """Reads the index-th word from the given binary file.""" 147 word = binary[index * 4:(index + 1) * 4]
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | pkgitems.cpp | 403 int32_t index=pkg->findItem(poolName); in ures_enumDependencies() local 404 if(index<0) { in ures_enumDependencies() 410 nativePool.setItem(pkg->getItem(index), ures_swap); in ures_enumDependencies()
|
H A D | ppucd.cpp | 291 int32_t index=prop-UCHAR_INT_START; in getProps() local 292 if(newValues.contains(prop) && cpProps.intProps[index]==blockProps.intProps[index]) { in getProps()
|