/third_party/node/deps/v8/src/compiler/ |
H A D | common-operator.cc | 180 return os << "id:" << i.object_id() << ", size:" << i.size(); in operator <<() 184 return base::hash_combine(p.object_id(), p.size()); in hash_value() 1401 bitmask.CountReal() == static_cast<int>(types->size())); in TypedStateValues() 1407 static_cast<int>(types->size()), 0, 0, 1, 0, 0, // counts in TypedStateValues() 1446 static_cast<int>(types->size()), 0, 0, 1, 0, 0, // counts in TypedObjectState() 1544 int size) { in ResizeMergeOrPhi() 1546 return Phi(PhiRepresentationOf(op), size); in ResizeMergeOrPhi() 1548 return EffectPhi(size); in ResizeMergeOrPhi() 1550 return Merge(size); in ResizeMergeOrPhi() 1543 ResizeMergeOrPhi(const Operator* op, int size) ResizeMergeOrPhi() argument [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | string.cc | 384 int size = this->Size(); // Byte size of the original string. in MakeExternal() local 385 // Abort if size does not allow in-place conversion. in MakeExternal() 386 if (size < ExternalString::kUncachedSize) return false; in MakeExternal() 409 if (size < ExternalString::kSizeOfAllExternalStrings) { in MakeExternal() 420 // Byte size of the external String object. in MakeExternal() 424 this->address() + new_size, size - new_size, in MakeExternal() 468 int size = this->Size(); // Byte size of the original string. in MakeExternal() local 469 // Abort if size doe in MakeExternal() [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-parser.cc | 1640 DCHECK(name_1->size() - 1 == std::strlen(name_1->data())); in ParsePropertyClassName() 1641 DCHECK(name_2->empty() || name_2->size() - 1 == std::strlen(name_2->data())); in ParsePropertyClassName() 2110 size_t num_text = text_.size(); in FlushText() 2209 size_t num_terms = terms_.size(); in FlushTerms() 2218 base::VectorOf(terms_.begin(), terms_.size()), zone())); in FlushTerms() 2250 return set.size() > 1; in NeedsDesugaringForIgnoreCase() 2260 size_t num_alternatives = alternatives_.size(); in ToRegExp() 2264 base::VectorOf(alternatives_.begin(), alternatives_.size()), zone())); in ToRegExp() 2289 } else if (text_.size() > 0) { in AddQuantifierToAtom() 2294 } else if (terms_.size() > in AddQuantifierToAtom() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/rtasm/ |
H A D | rtasm_x86sse.c | 145 else if (p->size == 0) { in do_realloc() 146 p->size = 1024; in do_realloc() 147 p->store = rtasm_exec_malloc(p->size); in do_realloc() 153 p->size *= 2; in do_realloc() 154 p->store = rtasm_exec_malloc(p->size); in do_realloc() 169 p->size = sizeof(p->error_overflow); in do_realloc() 177 if (p->csr + bytes - p->store > (int) p->size) in reserve() 2186 p->size = 0; in x86_init_func() 2193 p->size = code_size; in x86_init_func_size() 2208 p->size in x86_release_func() [all...] |
/third_party/rust/crates/libc/src/vxworks/ |
H A D | mod.rs | 1102 pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int; in setvbuf() 1112 pub fn fread(ptr: *mut c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fread() 1113 pub fn fwrite(ptr: *const c_void, size: size_t, nobj: size_t, stream: *mut FILE) -> size_t; in fwrite() 1132 pub fn calloc(nobj: size_t, size: size_t) -> *mut c_void; in calloc() 1133 pub fn malloc(size: size_t) -> *mut c_void; in malloc() 1134 pub fn realloc(p: *mut c_void, size: size_t) -> *mut c_void; in realloc() 1287 pub fn getcwd(buf: *mut ::c_char, size: ::size_t) -> *mut ::c_char; in getcwd() 1329 pub fn pthread_attr_getstacksize(attr: *const ::pthread_attr_t, size: *mut ::size_t) in pthread_attr_getstacksize() 1865 pub fn posix_memalign(memptr: *mut *mut ::c_void, align: ::size_t, size: ::size_t) -> ::c_int { in posix_memalign() 1876 let temp = memalign(align, size); in posix_memalign() [all...] |
/third_party/rust/crates/libc/src/unix/linux_like/ |
H A D | mod.rs | 1543 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_CLR() 1544 (*set).fds_bits[fd / size] &= !(1 << (fd % size)); in FD_CLR() 1550 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_ISSET() 1551 return ((*set).fds_bits[fd / size] & (1 << (fd % size))) != 0 in FD_ISSET() 1556 let size = ::mem::size_of_val(&(*set).fds_bits[0]) * 8; in FD_SET() 1557 (*set).fds_bits[fd / size] |= 1 << (fd % size); in FD_SET() 1670 pub fn memalign(align: ::size_t, size in pthread_attr_getstack() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
H A D | vktPipelineImageSlicedViewOf3DTests.cpp | 176 static uint32_t getMaxMipLevelCountForSize (uint32_t size) in getMaxMipLevelCountForSize() argument 178 DE_ASSERT(size <= static_cast<uint32_t>(std::numeric_limits<int32_t>::max())); in getMaxMipLevelCountForSize() 179 return static_cast<uint32_t>(deLog2Floor32(static_cast<int32_t>(size)) + 1); in getMaxMipLevelCountForSize() 297 << " const ivec3 size = imageSize(slicedImage);\n" in initPrograms() 300 << " const uvec4 storedColor = ((size.z == " << m_params.getActualRange() << ") ? goodColor : badColor);\n" in initPrograms() 323 // fragment shader invocations as pixels in the image (the framebuffer needs to have the same size as the storage images). in initPrograms() 400 de::MovePtr<tcu::PixelBufferAccess> makePixelBufferAccess (const BufferWithMemory& buffer, const tcu::IVec3& size, const tcu::TextureFormat& format) in makePixelBufferAccess() 402 de::MovePtr<tcu::PixelBufferAccess> bufferImage (new tcu::PixelBufferAccess(format, size, buffer.getAllocation().getHostPtr())); in makePixelBufferAccess() 429 const auto size = makeIVec3(extent.width, extent.height, extent.depth); in makeAndFillTransferBuffer() local 430 auto bufferImg = makePixelBufferAccess(*buffer, size, forma in makeAndFillTransferBuffer() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/glesext/gpu_shader5/ |
H A D | esextcGPUShader5TextureGatherOffset.cpp | 563 gl.deleteBuffers((glw::GLsizei)m_vertex_buffer_ids.size(), &m_vertex_buffer_ids[0]); in deinit() 642 gl.transformFeedbackVaryings(m_program_object_id, (glw::GLsizei)m_captured_varying_names.size(), in initTest() 649 &m_fragment_shader_code, m_vertex_shader_id, (unsigned int)m_vertex_shader_parts.size(), in initTest() 826 const unsigned int n_vertex_buffers = (unsigned int)m_vertex_buffer_infos.size(); in prepareProgramInput() 1134 info.data_size = (glw::GLuint)(m_coordinates_buffer_data.size() * sizeof(glw::GLfloat)); in prepareVertexBufferInfoForCoordinates() 1228 /** Get size of buffer used as output from transform feedback and names of varyings 1246 m_n_varyings_per_vertex = (unsigned int)out_captured_varyings.size(); in getTransformFeedBackDetails() 1423 /* Constats for offsets and size of buffer */ in prepareVertexBuffersData() 1450 info.data_size = (glw::GLuint)(m_offsets_buffer_data.size() * sizeof(glw::GLint)); in prepareVertexBuffersData() 1519 m_testCtx.getLog() << tcu::TestLog::Message << "Texture size in checkResult() [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl3cTextureSizePromotion.cpp | 47 : TestCaseGroup(context, "texture_size_promotion", "Verifies texture internal format size promotion mechanism.") in Tests() 60 : TestCase(context, "functional", "Verifies that texture internal format size promotion mechanism can be used.") in FunctionalTest() 577 << "Expected red size = " << descriptor.min_red_size in checkSourceTextureSizeAndType() 578 << ", expected green size = " << descriptor.min_green_size in checkSourceTextureSizeAndType() 579 << ", expected blue size = " << descriptor.min_blue_size in checkSourceTextureSizeAndType() 580 << ", expected alpha size = " << descriptor.min_alpha_size in checkSourceTextureSizeAndType() 581 << ", expected depth size = " << descriptor.min_depth_size in checkSourceTextureSizeAndType() 582 << ", expected stencil size = " << descriptor.min_stencil_size << ". Queried red size = " << red_size in checkSourceTextureSizeAndType() 583 << ", queried green size in checkSourceTextureSizeAndType() 1133 glw::GLuint size = 0; getMinPrecision() local [all...] |
/third_party/skia/third_party/externals/swiftshader/include/GLES2/ |
H A D | gl2.h | 395 typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 396 typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 437 typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 438 typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 523 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); 538 GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 539 GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 580 GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 581 GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 666 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenu [all...] |
/third_party/skia/third_party/externals/angle2/src/libGL/ |
H A D | entry_points_gl_1_autogen.h | 117 ANGLE_EXPORT void GL_APIENTRY GL_FeedbackBuffer(GLsizei size, GLenum type, GLfloat *buffer); 263 ANGLE_EXPORT void GL_APIENTRY GL_PointSize(GLfloat size); 318 ANGLE_EXPORT void GL_APIENTRY GL_SelectBuffer(GLsizei size, GLuint *buffer); 420 ANGLE_EXPORT void GL_APIENTRY GL_ColorPointer(GLint size, 474 ANGLE_EXPORT void GL_APIENTRY GL_TexCoordPointer(GLint size, 494 ANGLE_EXPORT void GL_APIENTRY GL_VertexPointer(GLint size, 677 ANGLE_EXPORT void GL_APIENTRY GL_SecondaryColorPointer(GLint size, 702 GLsizeiptr size, 707 GLsizeiptr size, 718 GLsizeiptr size, [all...] |
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_ext_autogen.h | 187 GLuint64 size, 714 GLsizeiptr size, 825 GLsizeiptr size, 830 GLsizeiptr size, 867 GLsizeiptr size, 916 GLuint64 size, 1203 GLsizeiptr size); 1496 ANGLE_EXPORT void GL_APIENTRY GL_MatrixIndexPointerOES(GLint size, 1500 ANGLE_EXPORT void GL_APIENTRY GL_WeightPointerOES(GLint size, 1622 GLsizeiptr size); [all...] |
/third_party/skia/third_party/externals/libwebp/src/dec/ |
H A D | vp8l_dec.c | 83 // respectively. Size of green alphabet depends on color cache size and is equal 111 int VP8LCheckSignature(const uint8_t* const data, size_t size) { in VP8LCheckSignature() argument 112 return (size >= VP8L_FRAME_HEADER_SIZE && in VP8LCheckSignature() 314 int size = 0; in ReadHuffmanCode() local 350 size = VP8LBuildHuffmanTable(table, HUFFMAN_TABLE_BITS, in ReadHuffmanCode() 353 if (!ok || size == 0) { in ReadHuffmanCode() 357 return size; in ReadHuffmanCode() 429 // Find maximum alphabet size for the htree group. in ReadHuffmanCodes() 469 int size; in ReadHuffmanCodes() local 478 size in ReadHuffmanCodes() [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | collationdatabuilder.cpp | 497 int32_t length = ce64s.size(); in addCE() 507 int32_t length = ce32s.size(); in addCE32() 520 int32_t index = conditionalCE32s.size(); in addConditionalCE32() 714 int32_t ce64sMax = ce64s.size() - length; in encodeExpansion() 731 int32_t i = ce64s.size(); in encodeExpansion() 748 int32_t ce32sMax = ce32s.size() - length; in encodeExpansion32() 765 int32_t i = ce32s.size(); in encodeExpansion32() 1244 jamoIndex = ce32s.size(); in buildMappings() 1310 data.ce32sLength = ce32s.size(); in buildMappings() 1311 data.cesLength = ce64s.size(); in buildMappings() [all...] |
H A D | rbnf.cpp | 198 int32_t size; member in VArray 201 VArray() : buf(NULL), cap(0), size(0), deleter(NULL) {} in VArray() 203 VArray(Fn_Deleter del) : buf(NULL), cap(0), size(0), deleter(del) {} in VArray() 207 for (int i = 0; i < size; ++i) { in ~VArray() 215 return size; in length() 220 if (size == cap) { in add() 238 void* start = &buf[size]; in add() 239 size_t count = (cap - size) * sizeof(void*); in add() 242 buf[size++] = elem; in add() 250 size in release() [all...] |
/third_party/skia/third_party/externals/opengl-registry/api/GLES2/ |
H A D | gl2.h | 395 typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 396 typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 437 typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 438 typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 523 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); 538 GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 539 GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 580 GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 581 GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 666 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenu [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | MachO.h | 135 /// S_SYMBOL_STUBS - Section with symbol stubs, byte size of stub in 550 uint32_t size; member 564 uint64_t size; member 848 uint32_t size; member 900 uint32_t size; member 908 uint64_t size; member 980 sys::swapByteOrder(mh.size); in swapStruct() 988 sys::swapByteOrder(mh.size); in swapStruct() 1056 sys::swapByteOrder(sect.size); in swapStruct() 1068 sys::swapByteOrder(sect.size); in swapStruct() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULibCalls.cpp | 418 size_t size; member 419 const TableEntry *table; // variable size: from 0 to (size - 1) 421 TableRef() : size(0), table(nullptr) {} in TableRef() 424 TableRef(const TableEntry (&tbl)[N]) : size(N), table(&tbl[0]) {} 508 (UseNative.getNumOccurrences() && UseNative.size() == 1 && in initNativeFuncs() 573 // builtin, with appended type size and alignment arguments, where 2 or 4 575 // of __read_pipe_2/__read_pipe_4 when the type size and alignment has the same 577 // for such cases where N is the size in bytes of the type (N = 1, 2, 4, 8, ..., 739 if (tr.size in TDOFold() 1135 unsigned size = nTy->getScalarSizeInBits(); fold_pow() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/Disassembler/ |
H A D | X86Disassembler.cpp | 180 if (offset >= insn->bytes.size()) in peek() 189 if (offset + sizeof(T) > r.size()) in consume() 298 case 0x66: { // Operand-size override { in readPrefixes() 308 case 0x67: // Address-size override in readPrefixes() 1210 // select register size and cases where its a required part of the opcode. in getInstructionID() 1346 // @param size - The width (in bytes) of the register being specified. 1350 static int readOpcodeRegister(struct InternalInstruction *insn, uint8_t size) { in readOpcodeRegister() argument 1353 if (size == 0) in readOpcodeRegister() 1354 size = insn->registerSize; in readOpcodeRegister() 1356 switch (size) { in readOpcodeRegister() 1393 readImmediate(struct InternalInstruction *insn, uint8_t size) readImmediate() argument [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | unames.cpp | 12 * tab size: 8 (not used) 81 uint16_t size; member 184 pInfo->size>=20 && in isAcceptable() 1270 range=(AlgorithmicRange *)((uint8_t *)range+range->size); in calcAlgNameSetsLengths() 1483 algRange=(AlgorithmicRange *)((uint8_t *)algRange+algRange->size); in u_charName() 1620 algRange=(AlgorithmicRange *)((uint8_t *)algRange+algRange->size); in u_charFromName() 1695 algRange=(AlgorithmicRange *)((uint8_t *)algRange+algRange->size); in u_enumCharNames() 1898 offset+=ds->readUInt16(inRange->size); in uchar_swapNames() 2054 offset+=ds->readUInt16(inRange->size); in uchar_swapNames() 2057 ds->swapArray16(ds, &inRange->size, in uchar_swapNames() [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_lossless_jpeg.cpp | 60 // at the expense of slight code size increases. 184 // These are code and size indexed by symbol value in FixHuffTbl() 230 // and immediately lookup the size and value of the huffman codes. in FixHuffTbl() 231 // If size is zero, it means that more than 8 bits are in the huffman in FixHuffTbl() 239 int32 size = huffsize [p]; in FixHuffTbl() local 241 if (size <= 8) in FixHuffTbl() 248 int32 ll = code << (8 -size); in FixHuffTbl() 250 int32 ul = (size < 8 ? ll | bitMask [24 + size] in FixHuffTbl() 260 htbl->numbits [i] = size; in FixHuffTbl() 2765 EmitBits(int code, int size) EmitBits() argument [all...] |
/third_party/protobuf/src/google/protobuf/compiler/ |
H A D | parser.cc | 97 result.reserve(field_name.size() + sizeof(kSuffix)); in MapEntryName() 99 for (int i = 0; i < field_name.size(); ++i) { in MapEntryName() 505 for (int i = 0; i < detached_comments->size(); ++i) { in AttachComments() 1080 group_location.AddPath(messages->size()); in ParseMessageFieldNoLabel() 1871 LocationRecorder location(extend_location, extensions->size()); in ParseExtend() 2347 dependency->size()); in ParseImport() 2354 public_dependency->size()); in ParseImport() 2356 *public_dependency->Add() = dependency->size(); in ParseImport() 2360 weak_dependency->size()); in ParseImport() 2363 *weak_dependency->Add() = dependency->size(); in ParseImport() [all...] |
H A D | plugin.pb.cc | 298 void Version::SetCachedSize(int size) const { in SetCachedSize() 299 _cached_size_.Set(size); in SetCachedSize() 636 void CodeGeneratorRequest::SetCachedSize(int size) const { in SetCachedSize() 637 _cached_size_.Set(size); in SetCachedSize() 806 ::PROTOBUF_NAMESPACE_ID::internal::FromIntSize(file_to_generate_.size()); in ByteSizeLong() 807 for (int i = 0, n = file_to_generate_.size(); i < n; i++) { in ByteSizeLong() 986 void CodeGeneratorResponse_File::SetCachedSize(int size) const { in SetCachedSize() 987 _cached_size_.Set(size); in SetCachedSize() 1295 void CodeGeneratorResponse::SetCachedSize(int size) const { in SetCachedSize() 1296 _cached_size_.Set(size); in SetCachedSize() [all...] |
/third_party/skia/third_party/externals/angle2/include/GLES2/ |
H A D | gl2.h | 376 typedef void (GL_APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 377 typedef void (GL_APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 418 typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 419 typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 504 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer); 519 GL_APICALL void GL_APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage); 520 GL_APICALL void GL_APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data); 561 GL_APICALL void GL_APIENTRY glGetActiveAttrib (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 562 GL_APICALL void GL_APIENTRY glGetActiveUniform (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name); 647 GL_APICALL void GL_APIENTRY glVertexAttribPointer (GLuint index, GLint size, GLenu [all...] |
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fTextureUnitTests.cpp | 72 // \note Cube map texture size is larger in order to make minifications possible - otherwise would need to display different faces at same time. 409 DE_ASSERT((int)m_unitTypes.size() == m_numUnits); in MultiTexShader() 563 DE_ASSERT((int)textureSizes.size() == m_numUnits); in makeSafeLods() 622 DE_ASSERT((int)m_unitTypes.size() == m_numUnits); in shadeFragments() 623 DE_ASSERT((int)m_transformations.size() == m_numUnits); in shadeFragments() 624 DE_ASSERT((int)m_lodDerivateParts.size() == m_numUnits); in shadeFragments() 860 m_ndxTexType.push_back((int)m_textures2d.size()); // Remember the index this texture has in the 2d texture vector. in init() 865 m_ndxTexType.push_back((int)m_texturesCube.size()); // Remember the index this texture has in the cube texture vector. in init() 871 m_ndxTexType.push_back((int)m_textures2dArray.size()); // Remember the index this texture has in the 2d array texture vector. in init() 876 m_ndxTexType.push_back((int)m_textures3d.size()); // Remembe in init() [all...] |