Home
last modified time | relevance | path

Searched refs:index (Results 1101 - 1125 of 7240) sorted by relevance

1...<<41424344454647484950>>...290

/third_party/node/deps/v8/src/torque/
H A Dinstructions.cc127 std::size_t index) const { in GetValueDefinition()
128 DCHECK_LT(index, GetValueDefinitionCount()); in GetValueDefinition()
129 return DefinitionLocation::Instruction(this, index); in GetValueDefinition()
186 std::size_t index) const { in GetValueDefinition()
187 DCHECK_LT(index, GetValueDefinitionCount()); in GetValueDefinition()
188 return DefinitionLocation::Instruction(this, index); in GetValueDefinition()
262 std::size_t index) const { in GetValueDefinition()
263 DCHECK_LT(index, GetValueDefinitionCount()); in GetValueDefinition()
264 return DefinitionLocation::Instruction(this, index); in GetValueDefinition()
372 std::size_t label, std::size_t index) cons in GetLabelValueDefinition()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.h181 unsigned index,
210 unsigned index );
216 unsigned index,
238 unsigned index,
307 unsigned index );
342 /* Supply an index to the sampler declaration as this is the hook to
349 unsigned index );
353 unsigned index,
362 unsigned index,
952 ureg_dst_dimension( struct ureg_dst reg, int index ) in ureg_dst_dimension()
1014 ureg_dst_array_register(unsigned file, unsigned index, unsigned array_id) ureg_dst_array_register() argument
1041 ureg_dst_register(unsigned file, unsigned index) ureg_dst_register() argument
1073 ureg_src_array_register(unsigned file, unsigned index, unsigned array_id) ureg_src_array_register() argument
1103 ureg_src_register(unsigned file, unsigned index) ureg_src_register() argument
[all...]
/third_party/skia/tests/
H A DGeometryTest.cpp113 for (size_t index = 3; index < SK_ARRAY_COUNT(oneChops); ++index) { in testChopCubic()
114 REPORTER_ASSERT(reporter, oneChops[index] == pts[3]); in testChopCubic()
119 static void check_pairs(skiatest::Reporter* reporter, int index, SkScalar t, const char name[], in check_pairs() argument
124 name, index, t, x0, y0, x1, y1); in check_pairs()
197 for (int index = 0; index < count; ++index) { in test_quad_tangents()
198 SkConic conic(&pts[index * in test_quad_tangents()
[all...]
H A DIncrTopoSortTest.cpp55 Node* dependent(int index) const { in dependent()
56 SkASSERT(0 <= index && index < fNodesThatDependOnMe.count()); in dependent()
57 return fNodesThatDependOnMe[index]; in dependent()
242 // Move 'node' to the index-th slot of the sort. The index-th slot should not have a current
244 void moveNodeInSort(sk_sp<Node> node, int index) { in moveNodeInSort() argument
245 SkASSERT(!fNodes[index]); in moveNodeInSort()
246 fNodes[index] = node; in moveNodeInSort()
247 node->setIndexInSort(index); in moveNodeInSort()
267 shift(int index) shift() argument
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Ddef.c175 * Returns an EnumValueDescriptor for this index. Note: we are not looking
176 * up by numeric enum value, but by the index in the list of enum values.
180 zend_long index; in PHP_METHOD() local
183 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { in PHP_METHOD()
184 zend_error(E_USER_ERROR, "Expect integer for index.\n"); in PHP_METHOD()
189 if (index < 0 || index >= field_num) { in PHP_METHOD()
190 zend_error(E_USER_ERROR, "Cannot get element at %ld.\n", index); in PHP_METHOD()
197 !upb_enum_done(&iter) && i < index; in PHP_METHOD()
278 * Returns a field from this oneof. The given index mus
283 zend_long index; PHP_METHOD() local
614 zend_long index; PHP_METHOD() local
655 zend_long index; PHP_METHOD() local
[all...]
/third_party/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py780 for index, extension_proto in enumerate(file_proto.extension):
782 extension_proto, file_proto.package, index, file_descriptor,
806 for index, service_proto in enumerate(file_proto.service):
808 self._MakeServiceDescriptor(service_proto, index, scope,
860 fields = [self._MakeFieldDescriptor(field, desc_name, index, file_desc)
861 for index, field in enumerate(desc_proto.field)]
863 self._MakeFieldDescriptor(extension, desc_name, index, file_desc,
865 for index, extension in enumerate(desc_proto.extension)]
869 index, None, [], desc.options,
872 for index, des
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DVertexArray.cpp97 void VertexArrayState::updateCachedMutableOrNonPersistentArrayBuffers(size_t index)
99 const VertexBinding &vertexBinding = mVertexBindings[index];
104 mCachedMutableOrImpersistentArrayBuffers.set(index, isMutableOrImpersistentArrayBuffer);
634 angle::SubjectIndex index) const
636 if (IsElementArrayBufferSubjectIndex(index))
645 ASSERT(index < mArrayBufferObserverBindings.size());
647 (contentsChanged ? DIRTY_BIT_BUFFER_DATA_0 : DIRTY_BIT_BINDING_0) + index);
651 void VertexArray::onSubjectStateChange(angle::SubjectIndex index, angle::SubjectMessage message)
656 ASSERT(IsElementArrayBufferSubjectIndex(index));
657 setDependentDirtyBit(true, index);
[all...]
H A DContext_gl.cpp213 void Context::getVertexAttribdv(GLuint index, GLenum pname, GLdouble *params) in getVertexAttribdv() argument
218 void Context::vertexAttrib1d(GLuint index, GLdouble x) in vertexAttrib1d() argument
223 void Context::vertexAttrib1dv(GLuint index, const GLdouble *v) in vertexAttrib1dv() argument
228 void Context::vertexAttrib1s(GLuint index, GLshort x) in vertexAttrib1s() argument
233 void Context::vertexAttrib1sv(GLuint index, const GLshort *v) in vertexAttrib1sv() argument
238 void Context::vertexAttrib2d(GLuint index, GLdouble x, GLdouble y) in vertexAttrib2d() argument
243 void Context::vertexAttrib2dv(GLuint index, const GLdouble *v) in vertexAttrib2dv() argument
248 void Context::vertexAttrib2s(GLuint index, GLshort x, GLshort y) in vertexAttrib2s() argument
253 void Context::vertexAttrib2sv(GLuint index, const GLshort *v) in vertexAttrib2sv() argument
258 void Context::vertexAttrib3d(GLuint index, GLdoubl argument
263 vertexAttrib3dv(GLuint index, const GLdouble *v) vertexAttrib3dv() argument
268 vertexAttrib3s(GLuint index, GLshort x, GLshort y, GLshort z) vertexAttrib3s() argument
273 vertexAttrib3sv(GLuint index, const GLshort *v) vertexAttrib3sv() argument
278 vertexAttrib4Nbv(GLuint index, const GLbyte *v) vertexAttrib4Nbv() argument
283 vertexAttrib4Niv(GLuint index, const GLint *v) vertexAttrib4Niv() argument
288 vertexAttrib4Nsv(GLuint index, const GLshort *v) vertexAttrib4Nsv() argument
293 vertexAttrib4Nub(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w) vertexAttrib4Nub() argument
298 vertexAttrib4Nubv(GLuint index, const GLubyte *v) vertexAttrib4Nubv() argument
303 vertexAttrib4Nuiv(GLuint index, const GLuint *v) vertexAttrib4Nuiv() argument
308 vertexAttrib4Nusv(GLuint index, const GLushort *v) vertexAttrib4Nusv() argument
313 vertexAttrib4bv(GLuint index, const GLbyte *v) vertexAttrib4bv() argument
318 vertexAttrib4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w) vertexAttrib4d() argument
323 vertexAttrib4dv(GLuint index, const GLdouble *v) vertexAttrib4dv() argument
328 vertexAttrib4iv(GLuint index, const GLint *v) vertexAttrib4iv() argument
333 vertexAttrib4s(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w) vertexAttrib4s() argument
338 vertexAttrib4sv(GLuint index, const GLshort *v) vertexAttrib4sv() argument
343 vertexAttrib4ubv(GLuint index, const GLubyte *v) vertexAttrib4ubv() argument
348 vertexAttrib4uiv(GLuint index, const GLuint *v) vertexAttrib4uiv() argument
353 vertexAttrib4usv(GLuint index, const GLushort *v) vertexAttrib4usv() argument
382 vertexAttribI1i(GLuint index, GLint x) vertexAttribI1i() argument
387 vertexAttribI1iv(GLuint index, const GLint *v) vertexAttribI1iv() argument
392 vertexAttribI1ui(GLuint index, GLuint x) vertexAttribI1ui() argument
397 vertexAttribI1uiv(GLuint index, const GLuint *v) vertexAttribI1uiv() argument
402 vertexAttribI2i(GLuint index, GLint x, GLint y) vertexAttribI2i() argument
407 vertexAttribI2iv(GLuint index, const GLint *v) vertexAttribI2iv() argument
412 vertexAttribI2ui(GLuint index, GLuint x, GLuint y) vertexAttribI2ui() argument
417 vertexAttribI2uiv(GLuint index, const GLuint *v) vertexAttribI2uiv() argument
422 vertexAttribI3i(GLuint index, GLint x, GLint y, GLint z) vertexAttribI3i() argument
427 vertexAttribI3iv(GLuint index, const GLint *v) vertexAttribI3iv() argument
432 vertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z) vertexAttribI3ui() argument
437 vertexAttribI3uiv(GLuint index, const GLuint *v) vertexAttribI3uiv() argument
442 vertexAttribI4bv(GLuint index, const GLbyte *v) vertexAttribI4bv() argument
447 vertexAttribI4sv(GLuint index, const GLshort *v) vertexAttribI4sv() argument
452 vertexAttribI4ubv(GLuint index, const GLubyte *v) vertexAttribI4ubv() argument
457 vertexAttribI4usv(GLuint index, const GLushort *v) vertexAttribI4usv() argument
471 primitiveRestartIndex(GLuint index) primitiveRestartIndex() argument
2118 vertexAttribP1ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) vertexAttribP1ui() argument
2123 vertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP1uiv() argument
2131 vertexAttribP2ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) vertexAttribP2ui() argument
2136 vertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP2uiv() argument
2144 vertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) vertexAttribP3ui() argument
2149 vertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP3uiv() argument
2157 vertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) vertexAttribP4ui() argument
2162 vertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) vertexAttribP4uiv() argument
2200 beginQueryIndexed(GLenum target, GLuint index, QueryID id) beginQueryIndexed() argument
2215 endQueryIndexed(GLenum target, GLuint index) endQueryIndexed() argument
2220 getActiveSubroutineName(ShaderProgramID program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name) getActiveSubroutineName() argument
2230 getActiveSubroutineUniformName(ShaderProgramID program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name) getActiveSubroutineUniformName() argument
2240 getActiveSubroutineUniformiv(ShaderProgramID program, GLenum shadertype, GLuint index, GLenum pname, GLint *values) getActiveSubroutineUniformiv() argument
2257 getQueryIndexediv(GLenum target, GLuint index, GLenum pname, GLint *params) getQueryIndexediv() argument
2413 depthRangeIndexed(GLuint index, GLdouble n, GLdouble f) depthRangeIndexed() argument
2418 getDoublei_v(GLenum target, GLuint index, GLdouble *data) getDoublei_v() argument
2423 getFloati_v(GLenum target, GLuint index, GLfloat *data) getFloati_v() argument
2428 getVertexAttribLdv(GLuint index, GLenum pname, GLdouble *params) getVertexAttribLdv() argument
2583 scissorIndexed(GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height) scissorIndexed() argument
2588 scissorIndexedv(GLuint index, const GLint *v) scissorIndexedv() argument
2593 vertexAttribL1d(GLuint index, GLdouble x) vertexAttribL1d() argument
2598 vertexAttribL1dv(GLuint index, const GLdouble *v) vertexAttribL1dv() argument
2603 vertexAttribL2d(GLuint index, GLdouble x, GLdouble y) vertexAttribL2d() argument
2608 vertexAttribL2dv(GLuint index, const GLdouble *v) vertexAttribL2dv() argument
2613 vertexAttribL3d(GLuint index, GLdouble x, GLdouble y, GLdouble z) vertexAttribL3d() argument
2618 vertexAttribL3dv(GLuint index, const GLdouble *v) vertexAttribL3dv() argument
2623 vertexAttribL4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w) vertexAttribL4d() argument
2628 vertexAttribL4dv(GLuint index, const GLdouble *v) vertexAttribL4dv() argument
2633 vertexAttribLPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) vertexAttribLPointer() argument
2647 viewportIndexedf(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h) viewportIndexedf() argument
2652 viewportIndexedfv(GLuint index, const GLfloat *v) viewportIndexedfv() argument
3044 disableVertexArrayAttrib(VertexArrayID vaobj, GLuint index) disableVertexArrayAttrib() argument
3049 enableVertexArrayAttrib(VertexArrayID vaobj, GLuint index) enableVertexArrayAttrib() argument
3208 getTransformFeedbacki64_v(GLuint xfb, GLenum pname, GLuint index, GLint64 *param) getTransformFeedbacki64_v() argument
3213 getTransformFeedbacki_v(GLuint xfb, GLenum pname, GLuint index, GLint *param) getTransformFeedbacki_v() argument
3223 getVertexArrayIndexed64iv(VertexArrayID vaobj, GLuint index, GLenum pname, GLint64 *param) getVertexArrayIndexed64iv() argument
3231 getVertexArrayIndexediv(VertexArrayID vaobj, GLuint index, GLenum pname, GLint *param) getVertexArrayIndexediv() argument
3609 transformFeedbackBufferBase(GLuint xfb, GLuint index, BufferID buffer) transformFeedbackBufferBase() argument
3614 transformFeedbackBufferRange(GLuint xfb, GLuint index, BufferID buffer, GLintptr offset, GLsizeiptr size) transformFeedbackBufferRange() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_adeclick.c43 int *index; member
87 double *acoefficients, uint8_t *click, int *index,
177 c->index = av_calloc(s->window_size, sizeof(*c->index)); in config_input()
180 !c->index || !c->interpolated || !c->acorrelation || !c->tmp) in config_input()
248 static int find_index(int *index, int value, int size) in find_index() argument
252 if ((value < index[0]) || (value > index[size - 1])) in find_index()
260 if (index[i] == value) in find_index()
262 if (value < index[ in find_index()
336 interpolation(DeclickChannel *c, const double *src, int ar_order, double *acoefficients, int *index, int nb_errors, double *auxiliary, double *interpolated) interpolation() argument
380 detect_clips(AudioDeclickContext *s, DeclickChannel *c, double unused0, double *unused1, double *unused2, uint8_t *clip, int *index, const double *src, double *dst) detect_clips() argument
398 const unsigned index = fmin(fabs(src[i]), 1) * (s->nb_hbins - 1); detect_clips() local
430 detect_clicks(AudioDeclickContext *s, DeclickChannel *c, double sigmae, double *detection, double *acoefficients, uint8_t *click, int *index, const double *src, double *dst) detect_clicks() argument
495 int *index = c->index; filter_channel() local
[all...]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/typedarray/
H A Decma-builtin-typedarray-prototype.c222 for (uint32_t index = 0; index < info.length && ecma_is_value_empty (ret_value); index++) in ecma_builtin_typedarray_prototype_exec_routine()
224 ecma_value_t current_index = ecma_make_uint32_value (index); in ecma_builtin_typedarray_prototype_exec_routine()
471 for (uint32_t index = 0; index < src_info.length; index++) in ecma_builtin_typedarray_prototype_map()
473 ecma_value_t current_index = ecma_make_uint32_value (index); in ecma_builtin_typedarray_prototype_map()
498 ecma_length_t target_byte_pos = index << target_info.shift; in ecma_builtin_typedarray_prototype_map()
560 uint32_t index in ecma_builtin_typedarray_prototype_reduce_with_direction() local
1029 ecma_op_typedarray_get_to_string_at_index(ecma_object_t *obj_p, uint32_t index) ecma_op_typedarray_get_to_string_at_index() argument
2010 ecma_builtin_typedarray_prototype_to_locale_string_helper(ecma_object_t *this_obj, uint32_t index) ecma_builtin_typedarray_prototype_to_locale_string_helper() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DGeometryShaderTest.cpp566 const GLuint index = glGetProgramResourceIndex(program, GL_UNIFORM, "color"); in TEST_P() local
568 ASSERT_NE(GL_INVALID_INDEX, index); in TEST_P()
575 glGetProgramResourceiv(program, GL_UNIFORM, index, kPropCount, kProps, kPropCount, &length, in TEST_P()
633 GLuint index = glGetProgramResourceIndex(program, GL_PROGRAM_INPUT, "position"); in TEST_P() local
634 glGetProgramResourceiv(program, GL_PROGRAM_INPUT, index, kPropCount, kProps, kPropCount, in TEST_P()
640 index = glGetProgramResourceIndex(program, GL_PROGRAM_OUTPUT, "oColor"); in TEST_P()
641 glGetProgramResourceiv(program, GL_PROGRAM_OUTPUT, index, kPropCount, kProps, kPropCount, in TEST_P()
646 index = glGetProgramResourceIndex(program, GL_UNIFORM, "u_color"); in TEST_P()
647 glGetProgramResourceiv(program, GL_UNIFORM, index, kPropCount, kProps, kPropCount, &length, in TEST_P()
653 index in TEST_P()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A Dentry_points.h27 void GL_APIENTRY BindAttribLocation(GLuint program, GLuint index, const GLchar* name);
68 void GL_APIENTRY DisableVertexAttribArray(GLuint index);
73 void GL_APIENTRY VertexAttribDivisorEXT(GLuint index, GLuint divisor);
76 void GL_APIENTRY VertexAttribDivisorANGLE(GLuint index, GLuint divisor);
78 void GL_APIENTRY EnableVertexAttribArray(GLuint index);
93 void GL_APIENTRY GetActiveAttrib(GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
94 void GL_APIENTRY GetActiveUniform(GLuint program, GLuint index, GLsizei bufsize, GLsizei* length, GLint* size, GLenum* type, GLchar* name);
122 void GL_APIENTRY GetVertexAttribfv(GLuint index, GLenum pname, GLfloat* params);
123 void GL_APIENTRY GetVertexAttribiv(GLuint index, GLenum pname, GLint* params);
124 void GL_APIENTRY GetVertexAttribPointerv(GLuint index, GLenu
[all...]
/third_party/ffmpeg/libavresample/
H A Dresample.c199 c->index = 0; in ff_audio_resample_init()
264 unsigned int index = c->index; in resample() local
274 uint64_t index2 = ((uint64_t)index) << 32; in resample()
277 (src_size-1-index) * (int64_t)c->src_incr / in resample()
288 index += dst_index * dst_incr; in resample()
289 index += (frac + dst_index * (int64_t)dst_incr_frac) / c->src_incr; in resample()
293 int sample_index = index >> c->phase_shift; in resample()
299 c->resample_one(c, dst, dst_index, src, index, frac); in resample()
302 index in resample()
[all...]
/third_party/alsa-utils/axfer/
H A Dxfer-options.c422 const char *template, unsigned int index, in generate_path_with_suffix()
433 xfer->paths[index] = malloc(len); in generate_path_with_suffix()
434 if (xfer->paths[index] == NULL) in generate_path_with_suffix()
438 snprintf(xfer->paths[index], len, single_format, template, in generate_path_with_suffix()
441 snprintf(xfer->paths[index], len, multiple_format, template, in generate_path_with_suffix()
442 index, suffix); in generate_path_with_suffix()
450 unsigned int index, in generate_path_without_suffix()
461 xfer->paths[index] = malloc(len); in generate_path_without_suffix()
462 if (xfer->paths[index] == NULL) in generate_path_without_suffix()
466 snprintf(xfer->paths[index], le in generate_path_without_suffix()
421 generate_path_with_suffix(struct xfer_context *xfer, const char *template, unsigned int index, const char *suffix) generate_path_with_suffix() argument
448 generate_path_without_suffix(struct xfer_context *xfer, const char *template, unsigned int index, const char *suffix ATTRIBUTE_UNUSED) generate_path_without_suffix() argument
475 generate_path(struct xfer_context *xfer, char *template, unsigned int index, const char *suffix) generate_path() argument
[all...]
/third_party/musl/porting/linux/user/src/time/
H A D__tz.c53 static const unsigned char *zi, *trans, *index, *types, *abbrevs, *abbrevs_end; variable
292 index = trans + (zi_read32(trans-12) << scale); in do_tzset()
293 types = index + zi_read32(trans-12); in do_tzset()
354 size_t a = 0, n = (index-trans)>>scale, m; in scan_trans()
367 if (local) off = (int32_t)zi_read32(types + 6 * index[m-1]); in scan_trans()
376 /* First and last entry are special. First means to use lowest-index in scan_trans()
378 n = (index-trans)>>scale; in scan_trans()
391 * and the index-zero (after transition) type as the alt. */ in scan_trans()
393 if (alt) *alt = index[0]; in scan_trans()
400 if (a && types[6*index[ in scan_trans()
[all...]
/third_party/musl/src/time/
H A D__tz.c43 static const unsigned char *zi, *trans, *index, *types, *abbrevs, *abbrevs_end, *tzdata_map; variable
366 index = trans + (zi_read32(trans-12) << scale); in do_tzset()
367 types = index + zi_read32(trans-12); in do_tzset()
428 size_t a = 0, n = (index-trans)>>scale, m; in scan_trans()
441 if (local) off = (int32_t)zi_read32(types + 6 * index[m-1]); in scan_trans()
450 /* First and last entry are special. First means to use lowest-index in scan_trans()
452 n = (index-trans)>>scale; in scan_trans()
465 * and the index-zero (after transition) type as the alt. */ in scan_trans()
467 if (alt) *alt = index[0]; in scan_trans()
474 if (a && types[6*index[ in scan_trans()
[all...]
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dasm.py112 return immediates.index(val) | 0xC0
116 idx = 32 + (enums[f'fau_special_page_{i}'].bare_values.index(op) << 1)
137 wrmask = 1 << WMASKS.index(mask)
238 val = enums[f'half_swizzles_{src.size}_bit'].bare_values.index(mod)
243 val = enums[f'swizzles_{src.size}_bit'].bare_values.index(mod)
248 val = enums[f'lane_{src.size}_bit'].bare_values.index(mod)
253 val = enums['combine'].bare_values.index(mod)
259 val = enums['widen'].bare_values.index(mod)
265 val = enums['swizzles_16_bit'].bare_values.index(mod)
271 val = enums['lane_8_bit'].bare_values.index(mo
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-register-optimizer.cc56 // with the lowest index as this permits temporary registers to be
232 // Calculate offset so register index values can be mapped into in BytecodeRegisterOptimizer()
238 -Register::FromParameterIndex(first_slot_index).index(); in BytecodeRegisterOptimizer()
243 static_cast<size_t>(temporary_base_.index())); in BytecodeRegisterOptimizer()
247 DCHECK_EQ(register_info_table_[i]->register_value().index(), in BytecodeRegisterOptimizer()
248 RegisterFromRegisterInfoTableIndex(i).index()); in BytecodeRegisterOptimizer()
317 DCHECK_NE(input.index(), output.index()); in OutputRegisterTransfer()
327 max_register_index_ = std::max(max_register_index_, output.index()); in OutputRegisterTransfer()
424 std::max(max_register_index_, reg_info->register_value().index()); in PrepareOutputRegister()
466 size_t index = GetRegisterInfoTableIndex(reg); GrowRegisterMap() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Dhash-table-inl.h64 void EphemeronHashTable::set_key(int index, Object value) { in set_key() argument
67 DCHECK_GE(index, 0); in set_key()
68 DCHECK_LT(index, this->length()); in set_key()
69 int offset = kHeaderSize + index * kTaggedSize; in set_key()
74 void EphemeronHashTable::set_key(int index, Object value, in set_key() argument
78 DCHECK_GE(index, 0); in set_key()
79 DCHECK_LT(index, this->length()); in set_key()
80 int offset = kHeaderSize + index * kTaggedSize; in set_key()
242 void HashTable<Derived, Shape>::set_key(int index, Object value) { in set_key() argument
244 FixedArray::set(index, valu in set_key()
248 set_key(int index, Object value, WriteBarrierMode mode) set_key() argument
316 Add( IsolateT* isolate, Handle<NameToIndexHashTable> table, Handle<Name> key, int32_t index) Add() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_measure.c160 if (measure_batch->index == config->batch_size) { in measure_start_snapshot()
176 unsigned index = measure_batch->index++; in measure_start_snapshot() local
177 assert(index < config->batch_size); in measure_start_snapshot()
181 batch->measure->bo, index * sizeof(uint64_t), 0ull); in measure_start_snapshot()
185 struct intel_measure_snapshot *snapshot = &(measure_batch->snapshots[index]); in measure_start_snapshot()
210 unsigned index = measure_batch->index++; in measure_end_snapshot() local
211 assert(index % 2 == 1); in measure_end_snapshot()
217 index * sizeo in measure_end_snapshot()
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dnode.c348 void *ppir_node_create(ppir_block *block, ppir_op op, int index, unsigned mask) in ppir_node_create() argument
370 if (index >= 0) { in ppir_node_create()
374 comp->var_nodes[(index << 2) + comp->reg_base + u_bit_scan(&mask)] = node; in ppir_node_create()
375 snprintf(node->name, sizeof(node->name), "reg%d", index); in ppir_node_create()
377 comp->var_nodes[index] = node; in ppir_node_create()
378 snprintf(node->name, sizeof(node->name), "ssa%d", index); in ppir_node_create()
386 node->index = comp->cur_index++; in ppir_node_create()
518 printf("ssa%d", dest->ssa.index); in ppir_node_print_dest()
524 printf("reg %d", dest->reg->index); in ppir_node_print_dest()
534 printf("ssa node %d", src->node->index); in ppir_node_print_src()
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
H A Dtree.go81 func (t *Tree) index(path Path) []indexedTest {
85 name := t.strings.index(p)
86 test, out[i] = test.index(name)
108 tests := t.index(path)
137 delete(parent.Children, indexedTest.index)
139 tc := tcm.index(indexedTest.index)
145 test = test.children[indexedTest.index]
146 tc := tcm.index(indexedTest.index)
[all...]
/third_party/skia/experimental/sktext/include/
H A DText.h43 bool hasProperty(TextIndex index, CodeUnitFlags flag) const { in hasProperty() argument
44 return (fCodeUnitProperties[index] & flag) == flag; in hasProperty()
46 bool isHardLineBreak(TextIndex index) const { in isHardLineBreak()
47 return this->hasProperty(index, CodeUnitFlags::kHardLineBreakBefore); in isHardLineBreak()
49 bool isSoftLineBreak(TextIndex index) const { in isSoftLineBreak()
50 return index != 0 && this->hasProperty(index, CodeUnitFlags::kSoftLineBreakBefore); in isSoftLineBreak()
174 virtual void onBeginLine(size_t index, TextRange lineText, bool hardBreak, SkRect bounds) { } in onBeginLine() argument
175 virtual void onEndLine(size_t index, TextRange lineText, GlyphRange trailingSpaces, size_t glyphCount) { } in onEndLine() argument
294 BoxLine(size_t index, TextRang
[all...]
/third_party/zlib/examples/
H A Denough.c16 Use a macro to compute the history index
55 (len - root), to index the remaining bits in that set of codes. Each
144 the array with length max-1 lists for the len index, with syms-3 of those
146 length as a function of sym. See the calculation of index in map() for the
147 index, and the calculation of size in main() for the size of the array.
163 states. mem and rem are used to calculate a single index in a triangular
270 size_t index = map(syms, left, len); in count() local
271 big_t got = g.num[index]; in count()
300 g.num[index] = sum; in count()
310 size_t index in been_here() local
467 size_t index = map(n, left, g.root + 1); enough() local
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dextension_set.h314 int32 GetRepeatedInt32(int number, int index) const;
315 int64 GetRepeatedInt64(int number, int index) const;
316 uint32 GetRepeatedUInt32(int number, int index) const;
317 uint64 GetRepeatedUInt64(int number, int index) const;
318 float GetRepeatedFloat(int number, int index) const;
319 double GetRepeatedDouble(int number, int index) const;
320 bool GetRepeatedBool(int number, int index) const;
321 int GetRepeatedEnum(int number, int index) const;
322 const std::string& GetRepeatedString(int number, int index) const;
323 const MessageLite& GetRepeatedMessage(int number, int index) cons
859 SetRepeatedString(int number, int index, std::string value) SetRepeatedString() argument
1088 Get(int number, const ExtensionSet& set, int index) Get() argument
1092 Set(int number, int index, const std::string& value, ExtensionSet* set) Set() argument
1096 Mutable(int number, int index, ExtensionSet* set) Mutable() argument
1169 Get(int number, const ExtensionSet& set, int index) Get() argument
1172 Set(int number, int index, ConstType value, ExtensionSet* set) Set() argument
1279 Get(int number, const ExtensionSet& set, int index) Get() argument
1282 Mutable(int number, int index, ExtensionSet* set) Mutable() argument
[all...]

Completed in 30 milliseconds

1...<<41424344454647484950>>...290