Home
last modified time | relevance | path

Searched refs:index (Results 2451 - 2475 of 11985) sorted by relevance

1...<<919293949596979899100>>...480

/third_party/alsa-lib/modules/mixer/simple/python/
H A Dcommon.py14 def __init__(self, mixer, name, index, weight):
15 InternalMElement.__init__(self, mixer, name, index, weight)
48 def __init__(self, mixer, name, index, weight):
49 BaseElement.__init__(self, mixer, name, index, weight)
135 def __init__(self, mixer, name, index, weight):
136 BaseElement.__init__(self, mixer, name, index, weight)
183 def __init__(self, mixer, name, index, weight):
184 EnumElement.__init__(self, mixer, name, index, weight)
189 def __init__(self, mixer, name, index, weight):
190 EnumElement.__init__(self, mixer, name, index, weigh
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIntTrieBuilder.java78 // preallocate and reset the first data block (block index 0) in IntTrieBuilder()
88 // do this at least for trie->index[0] even if that block is in IntTrieBuilder()
112 System.out.println("index length " + m_indexLength_
116 System.out.println("index has " + count + " counts of "
124 System.out.println("index has " + count + " counts of "
246 // fold the supplementary part of the index array in serialize()
257 char index[] = new char[m_indexLength_]; in serialize()
259 // write the index (stage 1) array and the 32-bit data (stage 2) array in serialize()
260 // write 16-bit index values shifted right by INDEX_SHIFT_ in serialize()
262 index[ in serialize()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DTestReorderingMode.java215 int index; in testReorderingMode()
259 index = -1; in testReorderingMode()
264 index = outIndices[tc][mode][option][level]; in testReorderingMode()
265 expected = textOut[index]; in testReorderingMode()
274 !assertRoundTrip(bidi3, tc, index, src, dest, in testReorderingMode()
285 if ((index > -1) && in testReorderingMode()
286 !checkMaps(bidi, index, src, dest, modeDesc, optDesc, in testReorderingMode()
627 int i, srcLen, resLen, index; in checkMaps()
642 "string index " + stringIndex + "\n" + in checkMaps()
658 "string index " in checkMaps()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestReorderingMode.java212 int index; in testReorderingMode()
256 index = -1; in testReorderingMode()
261 index = outIndices[tc][mode][option][level]; in testReorderingMode()
262 expected = textOut[index]; in testReorderingMode()
271 !assertRoundTrip(bidi3, tc, index, src, dest, in testReorderingMode()
282 if ((index > -1) && in testReorderingMode()
283 !checkMaps(bidi, index, src, dest, modeDesc, optDesc, in testReorderingMode()
624 int i, srcLen, resLen, index; in checkMaps()
639 "string index " + stringIndex + "\n" + in checkMaps()
655 "string index " in checkMaps()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DIntTrieBuilder.java80 // preallocate and reset the first data block (block index 0) in IntTrieBuilder()
90 // do this at least for trie->index[0] even if that block is in IntTrieBuilder()
114 System.out.println("index length " + m_indexLength_
118 System.out.println("index has " + count + " counts of "
126 System.out.println("index has " + count + " counts of "
248 // fold the supplementary part of the index array in serialize()
259 char index[] = new char[m_indexLength_]; in serialize()
261 // write the index (stage 1) array and the 32-bit data (stage 2) array in serialize()
262 // write 16-bit index values shifted right by INDEX_SHIFT_ in serialize()
264 index[ in serialize()
[all...]
/third_party/icu/icu4c/source/i18n/
H A Drbt_set.cpp44 * @param pos the index struct
167 UMemory(), ruleVector(nullptr), rules(nullptr), index {}, maxContextLength(0) { in TransliterationRuleSet()
185 uprv_memcpy(index, other.index, sizeof(index)); in TransliterationRuleSet()
218 int32_t len = index[256]; // see freeze() in setData()
260 * Check this for masked rules and index it to optimize performance.
270 /* Construct the rule array and index table. We reorder the in freeze()
272 * rules matching the index value for that bin. A rule in freeze()
273 * matches an index valu in freeze()
[all...]
H A Dnumber_modifiers.cpp231 int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, in formatTwoArgPattern()
250 result.insert(index + length, compiledPattern, offset, offset + prefixLength, field, status); in formatTwoArgPattern()
263 result.insert(index + length, compiledPattern, offset, offset + infixLength, field, status); in formatTwoArgPattern()
276 result.insert(index + length, compiledPattern, offset, offset + suffixLength, field, status); in formatTwoArgPattern()
425 CurrencySpacingEnabledModifier::applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, in applyCurrencySpacingAffix() argument
429 // NOTE: For prefix, output.fieldAt(index-1) gets the last field type in the prefix. in applyCurrencySpacingAffix()
432 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
436 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
230 formatTwoArgPattern(const SimpleFormatter& compiled, FormattedStringBuilder& result, int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, Field field, UErrorCode& status) formatTwoArgPattern() argument
[all...]
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_subgroup.c30 nir_ssa_def *index, in vtn_build_subgroup_instr()
34 /* Some of the subgroup operations take an index. SPIR-V allows this to be in vtn_build_subgroup_instr()
38 if (index && index->bit_size != 32) in vtn_build_subgroup_instr()
39 index = nir_u2u32(&b->nb, index); in vtn_build_subgroup_instr()
47 vtn_build_subgroup_instr(b, nir_op, src0->elems[i], index, in vtn_build_subgroup_instr()
60 if (index) in vtn_build_subgroup_instr()
61 intrin->src[1] = nir_src_for_ssa(index); in vtn_build_subgroup_instr()
330 nir_ssa_def *index in vtn_handle_subgroup() local
27 vtn_build_subgroup_instr(struct vtn_builder *b, nir_intrinsic_op nir_op, struct vtn_ssa_value *src0, nir_ssa_def *index, unsigned const_idx0, unsigned const_idx1) vtn_build_subgroup_instr() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_modifiers.cpp240 int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, in formatTwoArgPattern()
259 result.insert(index + length, compiledPattern, offset, offset + prefixLength, field, status); in formatTwoArgPattern()
272 result.insert(index + length, compiledPattern, offset, offset + infixLength, field, status); in formatTwoArgPattern()
285 result.insert(index + length, compiledPattern, offset, offset + suffixLength, field, status); in formatTwoArgPattern()
434 CurrencySpacingEnabledModifier::applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, in applyCurrencySpacingAffix() argument
438 // NOTE: For prefix, output.fieldAt(index-1) gets the last field type in the prefix. in applyCurrencySpacingAffix()
441 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
445 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
239 formatTwoArgPattern(const SimpleFormatter& compiled, FormattedStringBuilder& result, int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, Field field, UErrorCode& status) formatTwoArgPattern() argument
[all...]
H A Drbt_set.cpp44 * @param pos the index struct
167 UMemory(), ruleVector(nullptr), rules(nullptr), index {}, maxContextLength(0) { in TransliterationRuleSet()
185 uprv_memcpy(index, other.index, sizeof(index)); in TransliterationRuleSet()
218 int32_t len = index[256]; // see freeze() in setData()
260 * Check this for masked rules and index it to optimize performance.
270 /* Construct the rule array and index table. We reorder the in freeze()
272 * rules matching the index value for that bin. A rule in freeze()
273 * matches an index valu in freeze()
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-profiler.h165 /** Retrieves a child node by index. */
166 const CpuProfileNode* GetChild(int index) const;
228 * the given index.
230 const CpuProfileNode* GetSample(int index) const;
237 int64_t GetSampleTimestamp(int index) const;
248 StateTag GetSampleState(int index) const;
253 EmbedderStateTag GetSampleEmbedderState(int index) const;
563 * Returns edge name. This can be a variable name, an element index, or
624 /** Retrieves a child by index. */
625 const HeapGraphEdge* GetChild(int index) cons
1188 uint32_t index; // Index of the time interval that was changed. global() member
[all...]
/third_party/node/deps/v8/src/api/
H A Dapi-arguments-inl.h114 Handle<InterceptorInfo> interceptor, uint32_t index) { \
124 f(index, callback_info); \
224 Handle<InterceptorInfo> interceptor, uint32_t index, Handle<Object> value) { in CallIndexedSetter()
232 f(index, v8::Utils::ToLocal(value), callback_info); in CallIndexedSetter()
237 Handle<InterceptorInfo> interceptor, uint32_t index, in CallIndexedDefiner()
246 f(index, desc, callback_info); in CallIndexedDefiner()
251 Handle<InterceptorInfo> interceptor, uint32_t index) { in CallIndexedGetter()
256 return BasicCallIndexedGetterCallback(f, index, interceptor); in CallIndexedGetter()
260 Handle<InterceptorInfo> interceptor, uint32_t index) { in CallIndexedDescriptor()
265 return BasicCallIndexedGetterCallback(f, index, intercepto in CallIndexedDescriptor()
223 CallIndexedSetter( Handle<InterceptorInfo> interceptor, uint32_t index, Handle<Object> value) CallIndexedSetter() argument
236 CallIndexedDefiner( Handle<InterceptorInfo> interceptor, uint32_t index, const v8::PropertyDescriptor& desc) CallIndexedDefiner() argument
250 CallIndexedGetter( Handle<InterceptorInfo> interceptor, uint32_t index) CallIndexedGetter() argument
259 CallIndexedDescriptor( Handle<InterceptorInfo> interceptor, uint32_t index) CallIndexedDescriptor() argument
268 BasicCallIndexedGetterCallback( IndexedPropertyGetterCallback f, uint32_t index, Handle<Object> info) BasicCallIndexedGetterCallback() argument
[all...]
/third_party/node/deps/v8/include/
H A Dv8-profiler.h165 /** Retrieves a child node by index. */
166 const CpuProfileNode* GetChild(int index) const;
231 * the given index.
233 const CpuProfileNode* GetSample(int index) const;
240 int64_t GetSampleTimestamp(int index) const;
251 StateTag GetSampleState(int index) const;
256 EmbedderStateTag GetSampleEmbedderState(int index) const;
563 * Returns edge name. This can be a variable name, an element index, or
621 /** Retrieves a child by index. */
622 const HeapGraphEdge* GetChild(int index) cons
1119 uint32_t index; // Index of the time interval that was changed. global() member
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dlower.c52 int index = 0; in gpir_lower_const() local
63 load->index = comp->constant_base + (index >> 2); in gpir_lower_const()
64 load->component = index % 4; in gpir_lower_const()
65 constant[index++] = c->value; in gpir_lower_const()
72 load->node.index, node->index); in gpir_lower_const()
107 new->index, node->index, succ->index); in gpir_lower_load()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_modifiers.cpp231 int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, in formatTwoArgPattern()
250 result.insert(index + length, compiledPattern, offset, offset + prefixLength, field, status); in formatTwoArgPattern()
263 result.insert(index + length, compiledPattern, offset, offset + infixLength, field, status); in formatTwoArgPattern()
276 result.insert(index + length, compiledPattern, offset, offset + suffixLength, field, status); in formatTwoArgPattern()
425 CurrencySpacingEnabledModifier::applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, in applyCurrencySpacingAffix() argument
429 // NOTE: For prefix, output.fieldAt(index-1) gets the last field type in the prefix. in applyCurrencySpacingAffix()
432 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
436 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
230 formatTwoArgPattern(const SimpleFormatter& compiled, FormattedStringBuilder& result, int32_t index, int32_t* outPrefixLength, int32_t* outSuffixLength, Field field, UErrorCode& status) formatTwoArgPattern() argument
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DInternal.java410 public T get(int index) { in get() argument
411 return converter.convert(fromList.get(index)); in get()
594 int getInt(int index); in getInt() argument
600 int setInt(int index, int element); in setInt() argument
614 boolean getBoolean(int index); in getBoolean() argument
620 boolean setBoolean(int index, boolean element); in setBoolean() argument
634 long getLong(int index); in getLong() argument
640 long setLong(int index, long element); in setLong() argument
654 double getDouble(int index); in getDouble() argument
660 double setDouble(int index, doubl argument
674 getFloat(int index) getFloat() argument
680 setFloat(int index, float element) setFloat() argument
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc95 Py_ssize_t index; member
119 iter->index = 0; in GetIter()
414 Py_ssize_t index = self->index; in IterNext() local
415 while (self->index < total_size) { in IterNext()
416 index = self->index; in IterNext()
417 ++self->index; in IterNext()
418 if (self->fields[index]->is_extension()) { in IterNext()
423 if (self->fields[index] in IterNext()
[all...]
/third_party/python/Lib/idlelib/
H A Dundo.py82 def insert(self, index, chars, tags=None):
83 self.addcmd(InsertCommand(index, chars, tags))
199 marks[name] = text.index(name)
203 for name, index in marks.items():
204 text.mark_set(name, index)
215 self.index1 = text.index(self.index1)
218 self.index1 = text.index("end-1c")
220 self.index2 = text.index("%s+%dc" % (self.index1, len(self.chars)))
272 self.index1 = text.index(self.index1)
274 self.index2 = text.index(sel
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dreflection_internal.h95 const Value* Get(const Field* data, int index,
97 return ConvertFromT(GetRepeatedField(data)->Get(index), scratch_space);
102 void Set(Field* data, int index, const Value* value) const override {
103 MutableRepeatedField(data)->Set(index, ConvertToT(value));
149 const Value* Get(const Field* data, int index,
151 return ConvertFromT(GetRepeatedField(data)->Get(index), scratch_space);
156 void Set(Field* data, int index, const Value* value) const override {
157 ConvertToT(value, MutableRepeatedField(data)->Mutable(index));
212 const Value* Get(const Field* data, int index,
214 return ConvertFromEntry(GetRepeatedField(data)->Get(index), scratch_spac
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dtype_resolver_util.cc163 const FieldDescriptor* field, int index, in ConvertOptionField()
171 ? reflection->GetRepeatedMessage(options, field, index) in ConvertOptionField()
177 ? reflection->GetRepeatedDouble(options, field, index) in ConvertOptionField()
183 ? reflection->GetRepeatedFloat(options, field, index) in ConvertOptionField()
189 ? reflection->GetRepeatedInt64(options, field, index) in ConvertOptionField()
195 ? reflection->GetRepeatedUInt64(options, field, index) in ConvertOptionField()
201 ? reflection->GetRepeatedInt32(options, field, index) in ConvertOptionField()
207 ? reflection->GetRepeatedUInt32(options, field, index) in ConvertOptionField()
213 ? reflection->GetRepeatedBool(options, field, index) in ConvertOptionField()
219 ? reflection->GetRepeatedString(options, field, index) in ConvertOptionField()
161 ConvertOptionField(const Reflection* reflection, const Message& options, const FieldDescriptor* field, int index, Option* out) ConvertOptionField() argument
[all...]
/third_party/mesa3d/include/GLES3/
H A Dgl31.h385 typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name);
422 typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
426 typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
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);
460 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params);
461 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
462 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer);
515 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);
516 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, cons
[all...]
/third_party/openGLES/api/GLES3/
H A Dgl31.h366 typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name);
403 typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
407 typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
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);
441 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params);
442 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
443 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer);
496 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);
497 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, cons
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_gles_3_0_autogen.cpp77 void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer) in GL_BindBufferBase() argument
80 EVENT(context, GLBindBufferBase, "context = %d, target = %s, index = %u, buffer = %u", in GL_BindBufferBase()
81 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer); in GL_BindBufferBase()
90 targetPacked, index, bufferPacked)); in GL_BindBufferBase()
93 context->bindBufferBase(targetPacked, index, bufferPacked); in GL_BindBufferBase()
95 ANGLE_CAPTURE(BindBufferBase, isCallValid, context, targetPacked, index, bufferPacked); in GL_BindBufferBase()
104 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) in GL_BindBufferRange() argument
108 "context = %d, target = %s, index = %u, buffer = %u, offset = %llu, size = %llu", in GL_BindBufferRange()
109 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer, in GL_BindBufferRange()
120 index, bufferPacke in GL_BindBufferRange()
1229 GL_GetInteger64i_v(GLenum target, GLuint index, GLint64 *data) GL_GetInteger64i_v() argument
1278 GL_GetIntegeri_v(GLenum target, GLuint index, GLint *data) GL_GetIntegeri_v() argument
1479 GL_GetStringi(GLenum name, GLuint index) GL_GetStringi() argument
1536 GL_GetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) GL_GetTransformFeedbackVarying() argument
1668 GL_GetVertexAttribIiv(GLuint index, GLenum pname, GLint *params) GL_GetVertexAttribIiv() argument
1694 GL_GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params) GL_GetVertexAttribIuiv() argument
2877 GL_VertexAttribDivisor(GLuint index, GLuint divisor) GL_VertexAttribDivisor() argument
2901 GL_VertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w) GL_VertexAttribI4i() argument
2925 GL_VertexAttribI4iv(GLuint index, const GLint *v) GL_VertexAttribI4iv() argument
2949 GL_VertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) GL_VertexAttribI4ui() argument
2973 GL_VertexAttribI4uiv(GLuint index, const GLuint *v) GL_VertexAttribI4uiv() argument
2998 GL_VertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) GL_VertexAttribIPointer() argument
[all...]
/third_party/skia/third_party/externals/opengl-registry/api/GLES3/
H A Dgl31.h387 typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name);
424 typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
428 typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
439 typedef void (GL_APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
440 typedef void (GL_APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
462 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params);
463 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
464 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer);
517 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);
518 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, cons
[all...]
/third_party/skia/third_party/externals/angle2/include/GLES3/
H A Dgl31.h366 typedef void (GL_APIENTRYP PFNGLBINDATTRIBLOCATIONPROC) (GLuint program, GLuint index, const GLchar *name);
403 typedef void (GL_APIENTRYP PFNGLDISABLEVERTEXATTRIBARRAYPROC) (GLuint index);
407 typedef void (GL_APIENTRYP PFNGLENABLEVERTEXATTRIBARRAYPROC) (GLuint index);
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);
441 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBFVPROC) (GLuint index, GLenum pname, GLfloat *params);
442 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBIVPROC) (GLuint index, GLenum pname, GLint *params);
443 typedef void (GL_APIENTRYP PFNGLGETVERTEXATTRIBPOINTERVPROC) (GLuint index, GLenum pname, void **pointer);
496 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FPROC) (GLuint index, GLfloat x);
497 typedef void (GL_APIENTRYP PFNGLVERTEXATTRIB1FVPROC) (GLuint index, cons
[all...]

Completed in 42 milliseconds

1...<<919293949596979899100>>...480