Home
last modified time | relevance | path

Searched refs:index (Results 1251 - 1275 of 10562) sorted by relevance

1...<<51525354555657585960>>...423

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DTextFormatParseInfoTree.java105 * <p>Returns the {@link TextFormatParseLocation} for index-th value of the field in the parsed
109 * @param index the index of the value.
111 * @throws IllegalArgumentException index is out of range
113 public TextFormatParseLocation getLocation(final FieldDescriptor fieldDescriptor, int index) { in getLocation() argument
114 return getFromList(getLocations(fieldDescriptor), index, fieldDescriptor); in getLocation()
132 * @param index the index of message value.
134 * doesn't exist or the index is out of range.
135 * @throws IllegalArgumentException if index i
137 getNestedTree(final FieldDescriptor fieldDescriptor, int index) getNestedTree() argument
150 getFromList(List<T> list, int index, FieldDescriptor fieldDescriptor) getFromList() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_bar_pattern.h193 void OnTabBarIndexChange(int32_t index);
203 void UpdateSymbolStats(int32_t index, int32_t preIndex);
204 void AdjustSymbolStats(int32_t index);
206 void UpdateSymbolEffect(int32_t index);
208 void UpdateSubTabBoard(int32_t index);
247 void HandleBottomTabBarChange(int32_t index);
393 void SetImageColorOnIndex(int32_t index) in SetImageColorOnIndex() argument
395 imageColorOnIndex_ = index; in SetImageColorOnIndex()
551 void HandleHoverOnEvent(int32_t index);
552 void HandleMoveAway(int32_t index);
[all...]
H A Dtabs_pattern.cpp133 void TabsPattern::RecordChangeEvent(int32_t index) in RecordChangeEvent() argument
139 auto tabBarText = GetTabBarTextByIndex(index); in RecordChangeEvent()
143 .SetIndex(index) in RecordChangeEvent()
148 Recorder::NodeDataCache::Get().PutMultiple(tabsNode, inspectorId, tabBarText, index); in RecordChangeEvent()
153 std::string TabsPattern::GetTabBarTextByIndex(int32_t index) const in GetTabBarTextByIndex()
159 auto tabBarItem = tabBar->GetChildAtIndex(index); in GetTabBarTextByIndex()
168 ChangeEvent tabBarClickEvent([jsEvent = std::move(event)](int32_t index) { in SetOnTabBarClickEvent()
171 TabContentChangeEvent eventInfo(index); in SetOnTabBarClickEvent()
294 auto index = property->GetIndexValue(0); in OnAfterModifyDone() local
295 auto tabBarText = GetTabBarTextByIndex(index); in OnAfterModifyDone()
465 auto index = tabsLayoutProperty->GetIndex().value_or(0); BeforeCreateLayoutWrapper() local
557 UpdateSelectedState(const RefPtr<FrameNode>& tabBarNode, const RefPtr<FrameNode>& swiperNode, const RefPtr<TabBarPattern>& tabBarPattern, const RefPtr<TabsLayoutProperty>& tabsLayoutProperty, int index) UpdateSelectedState() argument
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libsvgplugin/src/
H A Dsvg_decoder.cpp267 uint32_t SvgDecoder::SetDecodeOptions(uint32_t index, const PixelDecodeOptions &opts, PlImageInfo &info) in SetDecodeOptions() argument
269 if (index >= SVG_IMAGE_NUM) { in SetDecodeOptions()
270 IMAGE_LOGE("[SetDecodeOptions] decode image index[%{public}u], out of range[%{public}u].", in SetDecodeOptions()
271 index, SVG_IMAGE_NUM); in SetDecodeOptions()
275 IMAGE_LOGD("[SetDecodeOptions] IN index=%{public}u, pixelFormat=%{public}d, alphaType=%{public}d, " in SetDecodeOptions()
276 "colorSpace=%{public}d, size=(%{public}u, %{public}u), state=%{public}d", index, in SetDecodeOptions()
301 uint32_t ret = DoSetDecodeOptions(index, opts, info); in SetDecodeOptions()
314 uint32_t SvgDecoder::Decode(uint32_t index, DecodeContext &context) in Decode() argument
316 ImageTrace imageTrace("SvgDecoder::Decode, index:%u", index); in Decode()
343 PromoteIncrementalDecode(uint32_t index, ProgDecodeContext &context) PromoteIncrementalDecode() argument
357 GetImageSize(uint32_t index, Size &size) GetImageSize() argument
526 DoSetDecodeOptions(uint32_t index, const PixelDecodeOptions &opts, PlImageInfo &info) DoSetDecodeOptions() argument
571 DoGetImageSize(uint32_t index, Size &size) DoGetImageSize() argument
593 DoDecode(uint32_t index, DecodeContext &context) DoDecode() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_regalloc.c213 rc_register_file file, unsigned int index, unsigned int mask) in scan_read_callback()
222 s->Input[index].Used = 1; in scan_read_callback()
223 reg = &s->Input[index]; in scan_read_callback()
237 rc_register_file * file, unsigned int * index) in remap_register()
243 reg = &s->Temporary[*index]; in remap_register()
245 reg = &s->Input[*index]; in remap_register()
250 *index = reg->Index; in remap_register()
443 "Could not find class for index=%u mask=%u\n", in variable_get_class()
474 static int get_reg_id(unsigned int index, unsigned int writemask) in get_reg_id() argument
480 return (index * RC_MASK_XYZ in get_reg_id()
212 scan_read_callback(void * data, struct rc_instruction * inst, rc_register_file file, unsigned int index, unsigned int mask) scan_read_callback() argument
236 remap_register(void * data, struct rc_instruction * inst, rc_register_file * file, unsigned int * index) remap_register() argument
486 unsigned int index = reg_get_index(reg); print_reg() local
500 unsigned int index, a_mask, b_mask; add_register_conflicts() local
629 unsigned int index = reg_get_index(reg); do_advanced_regalloc() local
647 unsigned i, j, index; rc_init_regalloc_state() local
[all...]
/third_party/typescript/tests/baselines/reference/
H A DbluebirdStaticThis.js81 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
82 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
83 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
84 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R[]>, mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
85 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
86 static map<R, U>(dit: typeof Promise, values: Promise.Thenable<R>[], mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
87 static map<R, U>(dit: typeof Promise, values: R[], mapper: (item: R, index: number, arrayLength: number) => Promise.Thenable<U>): Promise<U[]>;
88 static map<R, U>(dit: typeof Promise, values: R[], mapper: (item: R, index: number, arrayLength: number) => U): Promise<U[]>;
90 static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, reducer: (total: U, current: R, index: number, arrayLength: number) => Promise.Thenable<U>, initialValue?: U): Promise<U>;
91 static reduce<R, U>(dit: typeof Promise, values: Promise.Thenable<Promise.Thenable<R>[]>, reducer: (total: U, current: R, index
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Drepeated_field.c50 void* RepeatedField_memoryat(RepeatedField* self, int index, int element_size) { in RepeatedField_memoryat() argument
51 return ((uint8_t *)self->elements) + index * element_size; in RepeatedField_memoryat()
55 int index = NUM2INT(_index); in index_position() local
56 if (index < 0 && repeated_field->size > 0) { in index_position()
57 index = repeated_field->size + index; in index_position()
59 return index; in index_position()
106 * RepeatedField.[](index) => value
108 * Accesses the element at the given index. Returns nil on out-of-bounds
123 int index in RepeatedField_index() local
167 int index = index_position(_index, self); RepeatedField_index_set() local
251 RepeatedField_index_native(VALUE _self, int index) RepeatedField_index_native() argument
271 int index; RepeatedField_pop_one() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libGL/
H A DlibGL_autogen.cpp2481 void GL_APIENTRY glBindAttribLocation(GLuint program, GLuint index, const GLchar *name) in glBindAttribLocation() argument
2483 return GL_BindAttribLocation(program, index, name); in glBindAttribLocation()
2521 void GL_APIENTRY glDisableVertexAttribArray(GLuint index) in glDisableVertexAttribArray() argument
2523 return GL_DisableVertexAttribArray(index); in glDisableVertexAttribArray()
2531 void GL_APIENTRY glEnableVertexAttribArray(GLuint index) in glEnableVertexAttribArray() argument
2533 return GL_EnableVertexAttribArray(index); in glEnableVertexAttribArray()
2537 GLuint index, in glGetActiveAttrib()
2544 return GL_GetActiveAttrib(program, index, bufSize, length, size, type, name); in glGetActiveAttrib()
2548 GLuint index, in glGetActiveUniform()
2555 return GL_GetActiveUniform(program, index, bufSiz in glGetActiveUniform()
2536 glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name) glGetActiveAttrib() argument
2547 glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name) glGetActiveUniform() argument
2617 glGetVertexAttribPointerv(GLuint index, GLenum pname, void **pointer) glGetVertexAttribPointerv() argument
2622 glGetVertexAttribdv(GLuint index, GLenum pname, GLdouble *params) glGetVertexAttribdv() argument
2627 glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params) glGetVertexAttribfv() argument
2632 glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params) glGetVertexAttribiv() argument
2789 glVertexAttrib1d(GLuint index, GLdouble x) glVertexAttrib1d() argument
2794 glVertexAttrib1dv(GLuint index, const GLdouble *v) glVertexAttrib1dv() argument
2799 glVertexAttrib1f(GLuint index, GLfloat x) glVertexAttrib1f() argument
2804 glVertexAttrib1fv(GLuint index, const GLfloat *v) glVertexAttrib1fv() argument
2809 glVertexAttrib1s(GLuint index, GLshort x) glVertexAttrib1s() argument
2814 glVertexAttrib1sv(GLuint index, const GLshort *v) glVertexAttrib1sv() argument
2819 glVertexAttrib2d(GLuint index, GLdouble x, GLdouble y) glVertexAttrib2d() argument
2824 glVertexAttrib2dv(GLuint index, const GLdouble *v) glVertexAttrib2dv() argument
2829 glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y) glVertexAttrib2f() argument
2834 glVertexAttrib2fv(GLuint index, const GLfloat *v) glVertexAttrib2fv() argument
2839 glVertexAttrib2s(GLuint index, GLshort x, GLshort y) glVertexAttrib2s() argument
2844 glVertexAttrib2sv(GLuint index, const GLshort *v) glVertexAttrib2sv() argument
2849 glVertexAttrib3d(GLuint index, GLdouble x, GLdouble y, GLdouble z) glVertexAttrib3d() argument
2854 glVertexAttrib3dv(GLuint index, const GLdouble *v) glVertexAttrib3dv() argument
2859 glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z) glVertexAttrib3f() argument
2864 glVertexAttrib3fv(GLuint index, const GLfloat *v) glVertexAttrib3fv() argument
2869 glVertexAttrib3s(GLuint index, GLshort x, GLshort y, GLshort z) glVertexAttrib3s() argument
2874 glVertexAttrib3sv(GLuint index, const GLshort *v) glVertexAttrib3sv() argument
2879 glVertexAttrib4Nbv(GLuint index, const GLbyte *v) glVertexAttrib4Nbv() argument
2884 glVertexAttrib4Niv(GLuint index, const GLint *v) glVertexAttrib4Niv() argument
2889 glVertexAttrib4Nsv(GLuint index, const GLshort *v) glVertexAttrib4Nsv() argument
2894 glVertexAttrib4Nub(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w) glVertexAttrib4Nub() argument
2899 glVertexAttrib4Nubv(GLuint index, const GLubyte *v) glVertexAttrib4Nubv() argument
2904 glVertexAttrib4Nuiv(GLuint index, const GLuint *v) glVertexAttrib4Nuiv() argument
2909 glVertexAttrib4Nusv(GLuint index, const GLushort *v) glVertexAttrib4Nusv() argument
2914 glVertexAttrib4bv(GLuint index, const GLbyte *v) glVertexAttrib4bv() argument
2919 glVertexAttrib4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w) glVertexAttrib4d() argument
2924 glVertexAttrib4dv(GLuint index, const GLdouble *v) glVertexAttrib4dv() argument
2929 glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) glVertexAttrib4f() argument
2934 glVertexAttrib4fv(GLuint index, const GLfloat *v) glVertexAttrib4fv() argument
2939 glVertexAttrib4iv(GLuint index, const GLint *v) glVertexAttrib4iv() argument
2944 glVertexAttrib4s(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w) glVertexAttrib4s() argument
2949 glVertexAttrib4sv(GLuint index, const GLshort *v) glVertexAttrib4sv() argument
2954 glVertexAttrib4ubv(GLuint index, const GLubyte *v) glVertexAttrib4ubv() argument
2959 glVertexAttrib4uiv(GLuint index, const GLuint *v) glVertexAttrib4uiv() argument
2964 glVertexAttrib4usv(GLuint index, const GLushort *v) glVertexAttrib4usv() argument
2969 glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer) glVertexAttribPointer() argument
3039 glBindBufferBase(GLenum target, GLuint index, GLuint buffer) glBindBufferBase() argument
3045 glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) glBindBufferRange() argument
3114 glColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a) glColorMaski() argument
3134 glDisablei(GLenum target, GLuint index) glDisablei() argument
3139 glEnablei(GLenum target, GLuint index) glEnablei() argument
3224 glGetBooleani_v(GLenum target, GLuint index, GLboolean *data) glGetBooleani_v() argument
3242 glGetIntegeri_v(GLenum target, GLuint index, GLint *data) glGetIntegeri_v() argument
3252 glGetStringi(GLenum name, GLuint index) glGetStringi() argument
3267 glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) glGetTransformFeedbackVarying() argument
3283 glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params) glGetVertexAttribIiv() argument
3288 glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params) glGetVertexAttribIuiv() argument
3293 glIsEnabledi(GLenum target, GLuint index) glIsEnabledi() argument
3396 glVertexAttribI1i(GLuint index, GLint x) glVertexAttribI1i() argument
3401 glVertexAttribI1iv(GLuint index, const GLint *v) glVertexAttribI1iv() argument
3406 glVertexAttribI1ui(GLuint index, GLuint x) glVertexAttribI1ui() argument
3411 glVertexAttribI1uiv(GLuint index, const GLuint *v) glVertexAttribI1uiv() argument
3416 glVertexAttribI2i(GLuint index, GLint x, GLint y) glVertexAttribI2i() argument
3421 glVertexAttribI2iv(GLuint index, const GLint *v) glVertexAttribI2iv() argument
3426 glVertexAttribI2ui(GLuint index, GLuint x, GLuint y) glVertexAttribI2ui() argument
3431 glVertexAttribI2uiv(GLuint index, const GLuint *v) glVertexAttribI2uiv() argument
3436 glVertexAttribI3i(GLuint index, GLint x, GLint y, GLint z) glVertexAttribI3i() argument
3441 glVertexAttribI3iv(GLuint index, const GLint *v) glVertexAttribI3iv() argument
3446 glVertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z) glVertexAttribI3ui() argument
3451 glVertexAttribI3uiv(GLuint index, const GLuint *v) glVertexAttribI3uiv() argument
3456 glVertexAttribI4bv(GLuint index, const GLbyte *v) glVertexAttribI4bv() argument
3461 glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w) glVertexAttribI4i() argument
3466 glVertexAttribI4iv(GLuint index, const GLint *v) glVertexAttribI4iv() argument
3471 glVertexAttribI4sv(GLuint index, const GLshort *v) glVertexAttribI4sv() argument
3476 glVertexAttribI4ubv(GLuint index, const GLubyte *v) glVertexAttribI4ubv() argument
3481 glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) glVertexAttribI4ui() argument
3486 glVertexAttribI4uiv(GLuint index, const GLuint *v) glVertexAttribI4uiv() argument
3491 glVertexAttribI4usv(GLuint index, const GLushort *v) glVertexAttribI4usv() argument
3497 glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) glVertexAttribIPointer() argument
3578 glPrimitiveRestartIndex(GLuint index) glPrimitiveRestartIndex() argument
3652 glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data) glGetInteger64i_v() argument
3662 glGetMultisamplefv(GLenum pname, GLuint index, GLfloat *val) glGetMultisamplefv() argument
3727 glBindFragDataLocationIndexed(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name) glBindFragDataLocationIndexed() argument
3945 glVertexAttribDivisor(GLuint index, GLuint divisor) glVertexAttribDivisor() argument
3950 glVertexAttribP1ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) glVertexAttribP1ui() argument
3955 glVertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) glVertexAttribP1uiv() argument
3963 glVertexAttribP2ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) glVertexAttribP2ui() argument
3968 glVertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) glVertexAttribP2uiv() argument
3976 glVertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) glVertexAttribP3ui() argument
3981 glVertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) glVertexAttribP3uiv() argument
3989 glVertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) glVertexAttribP4ui() argument
3994 glVertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) glVertexAttribP4uiv() argument
4033 glBeginQueryIndexed(GLenum target, GLuint index, GLuint id) glBeginQueryIndexed() argument
4089 glEndQueryIndexed(GLenum target, GLuint index) glEndQueryIndexed() argument
4099 glGetActiveSubroutineName(GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name) glGetActiveSubroutineName() argument
4109 glGetActiveSubroutineUniformName(GLuint program, GLenum shadertype, GLuint index, GLsizei bufsize, GLsizei *length, GLchar *name) glGetActiveSubroutineUniformName() argument
4119 glGetActiveSubroutineUniformiv(GLuint program, GLenum shadertype, GLuint index, GLenum pname, GLint *values) glGetActiveSubroutineUniformiv() argument
4133 glGetQueryIndexediv(GLenum target, GLuint index, GLenum pname, GLint *params) glGetQueryIndexediv() argument
4338 glDepthRangeIndexed(GLuint index, GLdouble n, GLdouble f) glDepthRangeIndexed() argument
4353 glGetDoublei_v(GLenum target, GLuint index, GLdouble *data) glGetDoublei_v() argument
4358 glGetFloati_v(GLenum target, GLuint index, GLfloat *data) glGetFloati_v() argument
4393 glGetVertexAttribLdv(GLuint index, GLenum pname, GLdouble *params) glGetVertexAttribLdv() argument
4808 glScissorIndexed(GLuint index, GLint left, GLint bottom, GLsizei width, GLsizei height) glScissorIndexed() argument
4813 glScissorIndexedv(GLuint index, const GLint *v) glScissorIndexedv() argument
4837 glVertexAttribL1d(GLuint index, GLdouble x) glVertexAttribL1d() argument
4842 glVertexAttribL1dv(GLuint index, const GLdouble *v) glVertexAttribL1dv() argument
4847 glVertexAttribL2d(GLuint index, GLdouble x, GLdouble y) glVertexAttribL2d() argument
4852 glVertexAttribL2dv(GLuint index, const GLdouble *v) glVertexAttribL2dv() argument
4857 glVertexAttribL3d(GLuint index, GLdouble x, GLdouble y, GLdouble z) glVertexAttribL3d() argument
4862 glVertexAttribL3dv(GLuint index, const GLdouble *v) glVertexAttribL3dv() argument
4867 glVertexAttribL4d(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w) glVertexAttribL4d() argument
4872 glVertexAttribL4dv(GLuint index, const GLdouble *v) glVertexAttribL4dv() argument
4878 glVertexAttribLPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) glVertexAttribLPointer() argument
4888 glViewportIndexedf(GLuint index, GLfloat x, GLfloat y, GLfloat w, GLfloat h) glViewportIndexedf() argument
4893 glViewportIndexedfv(GLuint index, const GLfloat *v) glViewportIndexedfv() argument
5157 glGetProgramResourceName(GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name) glGetProgramResourceName() argument
5167 glGetProgramResourceiv(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params) glGetProgramResourceiv() argument
5632 glDisableVertexArrayAttrib(GLuint vaobj, GLuint index) glDisableVertexArrayAttrib() argument
5637 glEnableVertexArrayAttrib(GLuint vaobj, GLuint index) glEnableVertexArrayAttrib() argument
5807 glGetTransformFeedbacki64_v(GLuint xfb, GLenum pname, GLuint index, GLint64 *param) glGetTransformFeedbacki64_v() argument
5812 glGetTransformFeedbacki_v(GLuint xfb, GLenum pname, GLuint index, GLint *param) glGetTransformFeedbacki_v() argument
5822 glGetVertexArrayIndexed64iv(GLuint vaobj, GLuint index, GLenum pname, GLint64 *param) glGetVertexArrayIndexed64iv() argument
5830 glGetVertexArrayIndexediv(GLuint vaobj, GLuint index, GLenum pname, GLint *param) glGetVertexArrayIndexediv() argument
6229 glTransformFeedbackBufferBase(GLuint xfb, GLuint index, GLuint buffer) glTransformFeedbackBufferBase() argument
6234 glTransformFeedbackBufferRange(GLuint xfb, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) glTransformFeedbackBufferRange() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dtxt_paragraph.cpp294 float TxtParagraph::GetCharacterWidth(int32_t index) in GetCharacterWidth() argument
298 auto next = index + 1; in GetCharacterWidth()
301 index, next, txt::Paragraph::RectHeightStyle::kMax, txt::Paragraph::RectWidthStyle::kTight); in GetCharacterWidth()
304 index, next, Rosen::TextRectHeightStyle::COVER_TOP_AND_BOTTOM, Rosen::TextRectWidthStyle::TIGHT); in GetCharacterWidth()
373 // ToDo:adjust index
380 int32_t index; in GetGlyphIndexByCoordinate() local
382 index = static_cast<int32_t>(paragrah->GetGlyphPositionAtCoordinate(offset.GetX(), offset.GetY()).position); in GetGlyphIndexByCoordinate()
384 index = static_cast<int32_t>(paragrah->GetGlyphIndexByCoordinate(offset.GetX(), offset.GetY()).index); in GetGlyphIndexByCoordinate()
387 AdjustIndexForward(offset, true, index); in GetGlyphIndexByCoordinate()
409 AdjustIndexForward(const Offset& offset, bool compareOffset, int32_t& index) AdjustIndexForward() argument
460 CalCulateAndCheckPreIsPlaceholder(int32_t index, int32_t& extent) CalCulateAndCheckPreIsPlaceholder() argument
729 AdjustIndexForEmoji(int32_t index) AdjustIndexForEmoji() argument
739 IsIndexInEmoji(int32_t index, int32_t& emojiStart, int32_t& emojiEnd) IsIndexInEmoji() argument
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_bad_pixels.cpp384 bool dng_bad_pixel_list::IsPointIsolated (uint32 index, in IsPointIsolated() argument
388 dng_point pt = Point (index); in IsPointIsolated()
392 for (int32 j = index - 1; j >= 0; j--) in IsPointIsolated()
411 for (uint32 k = index + 1; k < PointCount (); k++) in IsPointIsolated()
453 bool dng_bad_pixel_list::IsRectIsolated (uint32 index, in IsRectIsolated() argument
457 dng_rect testRect = Rect (index); in IsRectIsolated()
467 if (n != index) in IsRectIsolated()
487 uint32 index) const in IsPointValid()
500 // Only search the bad point list if we have a starting search index. in IsPointValid()
502 if (index ! in IsPointValid()
620 uint32 index; dng_opcode_FixBadPixelsList() local
710 uint32 index; PutData() local
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/
H A Dgrid_scroller_test_ng.cpp24 AssertionResult ScrollToIndex(int32_t index, bool smooth, ScrollAlign align, float expectOffset);
25 void ScrollToIndex(int32_t index, bool smooth, ScrollAlign align, std::optional<float> extraOffset);
28 AssertionResult GridScrollerTestNg::ScrollToIndex(int32_t index, bool smooth, ScrollAlign align, float expectOffset) in ScrollToIndex() argument
32 pattern_->ScrollToIndex(index, smooth, align); in ScrollToIndex()
45 void GridScrollerTestNg::ScrollToIndex(int32_t index, bool smooth, ScrollAlign align, std::optional<float> extraOffset) in ScrollToIndex() argument
47 pattern_->ScrollToIndex(index, smooth, align, extraOffset); in ScrollToIndex()
59 * @tc.cases: Grid at top, ScrollTo index:0, text each ScrollAlign in HWTEST_F()
67 int32_t index = 0; in HWTEST_F() local
68 EXPECT_TRUE(ScrollToIndex(index, false, ScrollAlign::START, 0.f)); in HWTEST_F()
69 EXPECT_TRUE(ScrollToIndex(index, fals in HWTEST_F()
89 int32_t index = 4; HWTEST_F() local
111 int32_t index = 8; HWTEST_F() local
133 int32_t index = LAST_ITEM; HWTEST_F() local
162 int32_t index = 0; HWTEST_F() local
188 int32_t index = LAST_ITEM; HWTEST_F() local
210 int32_t index = -2; HWTEST_F() local
255 int32_t index = 8; HWTEST_F() local
282 int32_t index = 5; HWTEST_F() local
318 int32_t index = 5; HWTEST_F() local
341 int32_t index = 5; HWTEST_F() local
369 int32_t index = 5; HWTEST_F() local
393 int32_t index = 6; HWTEST_F() local
[all...]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-array-prototype.c308 uint32_t index) /**< array index */ in ecma_op_array_get_to_string_at_index()
310 ecma_value_t index_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_op_array_get_to_string_at_index()
501 for (uint32_t index = 0; index < arguments_number; index++) in ecma_builtin_array_prototype_object_push()
503 buffer_p[index] = ecma_copy_value_if_not_object (argument_list_p[index]); in ecma_builtin_array_prototype_object_push()
512 for (uint32_t index = 0; index < arguments_numbe in ecma_builtin_array_prototype_object_push()
307 ecma_op_array_get_to_string_at_index(ecma_object_t *obj_p, uint32_t index) ecma_op_array_get_to_string_at_index() argument
1143 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_builtin_array_prototype_object_sort() local
1163 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_builtin_array_prototype_object_sort() local
1237 uint32_t index = ecma_string_get_array_index (property_name_p); ecma_builtin_array_prototype_object_sort() local
1563 uint32_t index = 0; ecma_builtin_array_prototype_object_unshift() local
2174 uint32_t index = 0; ecma_builtin_array_reduce_from() local
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dindex.c2 * index.c - NTFS index handling. Originated from the Linux-NTFS project.
42 #include "index.h"
52 * ntfs_index_entry_mark_dirty - mark an index entry dirty
53 * @ictx: ntfs index context describing the index entry
55 * Mark the index entry described by the index entry context @ictx dirty.
57 * If the index entry is in the index roo
[all...]
/foundation/arkui/ui_lite/frameworks/common/
H A Dspannable_string.cpp41 bool SpannableString::GetTextStyle(uint16_t index, TextStyle& textStyle) in GetTextStyle() argument
48 if ((tempStart <= index) && (index < tempEnd)) { in GetTextStyle()
137 bool SpannableString::ExpandSpannableLen(uint16_t index) in ExpandSpannableLen() argument
139 if (isSpannableLen_ < index) { in ExpandSpannableLen()
141 while (isSpannableLen_ < index && isSpannableLen_ != 0 && isSpannableLen_ < DEFAULT_EXPAND_EDGE) { in ExpandSpannableLen()
185 bool SpannableString::GetSpannable(uint16_t index) in GetSpannable() argument
188 if ((isSpannable_ != nullptr) && (index < isSpannableLen_)) { in GetSpannable()
189 result = isSpannable_[index]; in GetSpannable()
240 bool SpannableString::GetFontSize(uint16_t index, uint8_ argument
298 GetFontId(uint16_t index, uint16_t& outputFontId) GetFontId() argument
357 GetFontHeight(uint16_t index, int16_t& outputHeight, uint16_t& defaultFontId, uint8_t defaultFontSize) GetFontHeight() argument
430 GetBackgroundColor(uint16_t index, ColorType& outputBackgroundColor) GetBackgroundColor() argument
492 GetForegroundColor(uint16_t index, ColorType& outputForegroundColor) GetForegroundColor() argument
555 GetLineBackgroundColor(uint16_t index, ColorType& outputLineBackgroundColor) GetLineBackgroundColor() argument
[all...]
/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Avbuffer/src/
H A Davcodec_audio_avbuffer_encoder_demo.cpp85 string::size_type index = str.find_first_of(separator, start); in SplitStringFully() local
87 while (index != string::npos) { in SplitStringFully()
88 substring = str.substr(start, index - start); in SplitStringFully()
90 start = str.find_first_not_of(separator, index); in SplitStringFully()
94 index = str.find_first_of(separator, start); in SplitStringFully()
164 static void OnInputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) in OnInputBufferAvailable() argument
169 signal->inQueue_.push(index); in OnInputBufferAvailable()
174 static void OnOutputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) in OnOutputBufferAvailable() argument
179 signal->outQueue_.push(index); in OnOutputBufferAvailable()
182 cout << "OnOutputBufferAvailable received, index in OnOutputBufferAvailable()
434 HandleEOS(const uint32_t &index) HandleEOS() argument
459 uint32_t index = signal_->inQueue_.front(); InputFunc() local
505 uint32_t index = signal_->outQueue_.front(); OutputFunc() local
651 PushInputData(OH_AVCodec *codec, uint32_t index) PushInputData() argument
668 PushInputDataEOS(OH_AVCodec *codec, uint32_t index) PushInputDataEOS() argument
685 FreeOutputData(OH_AVCodec *codec, uint32_t index) FreeOutputData() argument
698 uint32_t index; GetInputIndex() local
717 uint32_t index; GetOutputIndex() local
[all...]
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_backup_clone_test/src/
H A Dmedialibrary_backup_clone_test.cpp661 int index; in VerifyPortraitAlbumRestore() local
664 (void)resultSet->GetColumnIndex("album_name", index); in VerifyPortraitAlbumRestore()
665 resultSet->GetString(index, columnValue); in VerifyPortraitAlbumRestore()
668 (void)resultSet->GetColumnIndex("tag_id", index); in VerifyPortraitAlbumRestore()
669 resultSet->GetString(index, columnValue); in VerifyPortraitAlbumRestore()
672 (void)resultSet->GetColumnIndex("cover_uri", index); in VerifyPortraitAlbumRestore()
673 resultSet->GetString(index, columnValue); in VerifyPortraitAlbumRestore()
676 (void)resultSet->GetColumnIndex("is_cover_satisfied", index); in VerifyPortraitAlbumRestore()
678 resultSet->GetInt(index, isCoverSatisfied); in VerifyPortraitAlbumRestore()
709 int index; in VerifyPortraitClusteringRestore() local
775 int index; VerifyImageFaceRestore() local
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_shader_calls.c110 if (src->ssa->index >= set->size) in src_is_in_bitset()
113 return BITSET_TEST(set->set, src->ssa->index); in src_is_in_bitset()
119 if (def->index >= set->size) in add_ssa_def_to_bitset()
122 BITSET_SET(set->set, def->index); in add_ssa_def_to_bitset()
231 if (def->index >= pbv_arr->len) in get_phi_builder_value_for_def()
234 return pbv_arr->arr[def->index]; in get_phi_builder_value_for_def()
337 * indexed by call instruction index. in spill_ssa_defs_and_lower_shader_calls()
346 /* For each call instruction, the block index of the block it lives in */ in spill_ssa_defs_and_lower_shader_calls()
349 /* Walk the call instructions and fetch the liveness set and block index in spill_ssa_defs_and_lower_shader_calls()
360 call_block_indices[call_idx] = block->index; in spill_ssa_defs_and_lower_shader_calls()
417 unsigned index = w * BITSET_WORDBITS + i; spill_ssa_defs_and_lower_shader_calls() local
[all...]
/third_party/node/deps/v8/src/objects/
H A Dshared-function-info-inl.h52 byte PreparseData::get(int index) const { in get()
53 DCHECK_LE(0, index); in get()
54 DCHECK_LT(index, data_length()); in get()
55 int offset = kDataStartOffset + index * kByteSize; in get()
59 void PreparseData::set(int index, byte value) { in set() argument
60 DCHECK_LE(0, index); in set()
61 DCHECK_LT(index, data_length()); in set()
62 int offset = kDataStartOffset + index * kByteSize; in set()
66 void PreparseData::copy_in(int index, const byte* buffer, int length) { in copy_in() argument
67 DCHECK(index > in copy_in()
84 set_child(int index, PreparseData value, WriteBarrierMode mode) set_child() argument
374 int index = Context::FIRST_FUNCTION_MAP_INDEX + function_map_index() local
380 set_function_map_index(int index) set_function_map_index() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DTextureStorage11.cpp208 const gl::ImageIndex &index, in getSubresourceIndex()
211 UINT mipSlice = static_cast<UINT>(index.getLevelIndex() + mTopLevel); in getSubresourceIndex()
212 UINT arraySlice = static_cast<UINT>(index.hasLayer() ? index.getLayerIndex() : 0); in getSubresourceIndex()
526 const gl::ImageIndex &index, in updateSubresourceLevel()
532 const GLint level = index.getLevelIndex(); in updateSubresourceLevel()
554 ANGLE_TRY(getSubresourceIndex(context, index, &dstSubresource)); in updateSubresourceLevel()
589 const gl::ImageIndex &index, in copySubresourceLevel()
599 if (index.getLevelIndex() > 0 && mRenderer->getFeatures().zeroMaxLodWorkaround.enabled) in copySubresourceLevel()
611 ANGLE_TRY(getSubresourceIndex(context, index, in copySubresourceLevel()
207 getSubresourceIndex(const gl::Context *context, const gl::ImageIndex &index, UINT *outSubresourceIndex) const getSubresourceIndex() argument
523 updateSubresourceLevel(const gl::Context *context, const TextureHelper11 &srcTexture, unsigned int sourceSubresource, const gl::ImageIndex &index, const gl::Box &copyArea) updateSubresourceLevel() argument
586 copySubresourceLevel(const gl::Context *context, const TextureHelper11 &dstTexture, unsigned int dstSubresource, const gl::ImageIndex &index, const gl::Box &region) copySubresourceLevel() argument
731 setData(const gl::Context *context, const gl::ImageIndex &index, ImageD3D *image, const gl::Box *destBox, GLenum type, const gl::PixelUnpackState &unpack, const uint8_t *pixelData) setData() argument
856 gl::ImageIndex index = itCopy.next(); initDropStencilTexture() local
907 findMultisampledRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findMultisampledRenderTarget() argument
925 getMultisampledRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getMultisampledRenderTarget() argument
1168 associateImage(Image11 *image, const gl::ImageIndex &index) associateImage() argument
1179 verifyAssociatedImageValid(const gl::ImageIndex &index, Image11 *expectedImage) verifyAssociatedImageValid() argument
1191 disassociateImage(const gl::ImageIndex &index, Image11 *expectedImage) disassociateImage() argument
1202 releaseAssociatedImage(const gl::Context *context, const gl::ImageIndex &index, Image11 *incomingImage) releaseAssociatedImage() argument
1300 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
1334 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
1675 associateImage(Image11 *image, const gl::ImageIndex &index) associateImage() argument
1681 verifyAssociatedImageValid(const gl::ImageIndex &index, Image11 *expectedImage) verifyAssociatedImageValid() argument
1687 disassociateImage(const gl::ImageIndex &index, Image11 *expectedImage) disassociateImage() argument
1695 releaseAssociatedImage(const gl::Context *context, const gl::ImageIndex &index, Image11 *incomingImage) releaseAssociatedImage() argument
1725 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
1735 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
1882 getSubresourceIndex(const gl::Context *context, const gl::ImageIndex &index, UINT *outSubresourceIndex) const getSubresourceIndex() argument
1924 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
1935 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
2172 getSubresourceIndex(const gl::Context *context, const gl::ImageIndex &index, UINT *outSubresourceIndex) const getSubresourceIndex() argument
2291 associateImage(Image11 *image, const gl::ImageIndex &index) associateImage() argument
2308 verifyAssociatedImageValid(const gl::ImageIndex &index, Image11 *expectedImage) verifyAssociatedImageValid() argument
2322 disassociateImage(const gl::ImageIndex &index, Image11 *expectedImage) disassociateImage() argument
2335 releaseAssociatedImage(const gl::Context *context, const gl::ImageIndex &index, Image11 *incomingImage) releaseAssociatedImage() argument
2430 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
2463 createRenderTargetSRV(const gl::Context *context, const TextureHelper11 &texture, const gl::ImageIndex &index, DXGI_FORMAT resourceFormat, d3d11::SharedSRV *srv) const createRenderTargetSRV() argument
2491 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
2883 associateImage(Image11 *image, const gl::ImageIndex &index) associateImage() argument
2895 verifyAssociatedImageValid(const gl::ImageIndex &index, Image11 *expectedImage) verifyAssociatedImageValid() argument
2907 disassociateImage(const gl::ImageIndex &index, Image11 *expectedImage) disassociateImage() argument
2918 releaseAssociatedImage(const gl::Context *context, const gl::ImageIndex &index, Image11 *incomingImage) releaseAssociatedImage() argument
3031 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
3061 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
3259 associateImage(Image11 *image, const gl::ImageIndex &index) associateImage() argument
3274 verifyAssociatedImageValid(const gl::ImageIndex &index, Image11 *expectedImage) verifyAssociatedImageValid() argument
3291 disassociateImage(const gl::ImageIndex &index, Image11 *expectedImage) disassociateImage() argument
3308 releaseAssociatedImage(const gl::Context *context, const gl::ImageIndex &index, Image11 *incomingImage) releaseAssociatedImage() argument
3426 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
3452 createRenderTargetSRV(const gl::Context *context, const TextureHelper11 &texture, const gl::ImageIndex &index, DXGI_FORMAT resourceFormat, d3d11::SharedSRV *srv) const createRenderTargetSRV() argument
3472 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
3749 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
3764 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
3966 findRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) const findRenderTarget() argument
3993 createRenderTargetSRV( const gl::Context *context, const TextureHelper11 &texture, const gl::ImageIndex &index, DXGI_FORMAT resourceFormat, d3d11::SharedSRV *srv) const createRenderTargetSRV() argument
4012 getRenderTarget(const gl::Context *context, const gl::ImageIndex &index, GLsizei samples, RenderTargetD3D **outRT) getRenderTarget() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dcontent_controller.cpp77 bool ContentController::InsertValue(int32_t index, const std::string& value) in InsertValue() argument
79 return ReplaceSelectedValue(index, index, value); in InsertValue()
383 bool ContentController::IsIndexBeforeOrInEmoji(int32_t index) in IsIndexBeforeOrInEmoji() argument
385 int32_t startIndex = index - EMOJI_RANGE_LEFT; in IsIndexBeforeOrInEmoji()
386 int32_t endIndex = index + EMOJI_RANGE_RIGHT; in IsIndexBeforeOrInEmoji()
388 index = index - startIndex; in IsIndexBeforeOrInEmoji()
389 return TextEmojiProcessor::IsIndexBeforeOrInEmoji(index, GetSelectedValue(startIndex, endIndex)); in IsIndexBeforeOrInEmoji()
392 std::string ContentController::GetValueBeforeIndex(int32_t index) in GetValueBeforeIndex() argument
397 GetValueAfterIndex(int32_t index) GetValueAfterIndex() argument
402 GetSelectedLimitValue(int32_t& index, int32_t& startIndex) GetSelectedLimitValue() argument
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dabs_result_set.cpp32 void RowEntity::Put(const std::string& name, int32_t index, ValueObject&& value) in Put() argument
34 if (index < 0 || index >= static_cast<int>(indexs_.size())) { in Put()
38 indexs_[index] = it.first; in Put()
50 ValueObject RowEntity::Get(int index) const in Get()
52 if (index < 0 || index >= static_cast<int>(indexs_.size())) { in Get()
55 return indexs_[index]->second; in Get()
120 for (auto &[name, index] : columnMap_) { in GetAllColumnNames()
121 if (index > columnCount in GetAllColumnNames()
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_adelay.c33 size_t index; member
85 *dst = samples[d->index]; \
86 samples[d->index] = *src; \
88 d->index++; \
90 d->index = d->index >= d->delay ? 0 : d->index; \
114 d->index = 0; \
125 if (d->index > new_delay) { \
126 d->index
[all...]
/third_party/ffmpeg/libswresample/tests/
H A Dswresample.c39 static double get(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f){ in get() argument
46 index= ch + index*ch_count; in get()
50 case AV_SAMPLE_FMT_U8 : return ((const uint8_t*)p)[index]/127.0-1.0; in get()
51 case AV_SAMPLE_FMT_S16: return ((const int16_t*)p)[index]/32767.0; in get()
52 case AV_SAMPLE_FMT_S32: return ((const int32_t*)p)[index]/2147483647.0; in get()
53 case AV_SAMPLE_FMT_FLT: return ((const float *)p)[index]; in get()
54 case AV_SAMPLE_FMT_DBL: return ((const double *)p)[index]; in get()
59 static void set(uint8_t *a[], int ch, int index, int ch_count, enum AVSampleFormat f, double v){ in set() argument
66 index in set()
78 shift(uint8_t *a[], int index, int ch_count, enum AVSampleFormat f) shift() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dtscoll.cpp59 void IntlTestCollator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) in runIndexedTest() argument
396 int32_t index = orderLength; in backAndForth() local
406 if (index == 0) { in backAndForth()
416 index -= 1; in backAndForth()
417 if (o != orders[index].order) { in backAndForth()
419 index += 1; in backAndForth()
421 while (index > 0 && orders[--index].order == 0) { in backAndForth()
425 if (o != orders[index].order) { in backAndForth()
426 errln("Mismatched order at index in backAndForth()
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A Danv_measure.c159 unsigned index = measure->base.index++; in anv_measure_start_snapshot() local
164 .offset = index * sizeof(uint64_t) }, in anv_measure_start_snapshot()
170 struct intel_measure_snapshot *snapshot = &(measure->base.snapshots[index]); in anv_measure_start_snapshot()
199 unsigned index = measure->base.index++; in anv_measure_end_snapshot() local
200 assert(index % 2 == 1); in anv_measure_end_snapshot()
205 .offset = index * sizeof(uint64_t) }, in anv_measure_end_snapshot()
208 struct intel_measure_snapshot *snapshot = &(measure->base.snapshots[index]); in anv_measure_end_snapshot()
269 if (measure->base.index in _anv_measure_snapshot()
[all...]

Completed in 44 milliseconds

1...<<51525354555657585960>>...423