Home
last modified time | relevance | path

Searched refs:index (Results 3151 - 3175 of 10565) sorted by relevance

1...<<121122123124125126127128129130>>...423

/foundation/arkui/ace_engine_lite/frameworks/examples/showcase/src/main/js/default/common/js/
H A Dswiper.js16 this.index = e.index;
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dcode-generator-x64.cc43 Immediate InputImmediate(size_t index) { in InputImmediate() argument
44 return ToImmediate(instr_->InputAt(index)); in InputImmediate()
47 Operand InputOperand(size_t index, int extra = 0) { in InputOperand() argument
48 return ToOperand(instr_->InputAt(index), extra); in InputOperand()
67 return SlotToOperand(AllocatedOperand::cast(op)->index(), extra); in ToOperand()
110 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() local
113 return Operand(base, index, scale, disp); in MemoryOperand()
120 Register index = InputRegister(NextOffset(offset)); in MemoryOperand() local
123 return Operand(base, index, scale, disp); in MemoryOperand()
134 Register index in MemoryOperand() local
143 Register index = InputRegister(NextOffset(offset)); MemoryOperand() local
170 HasImmediateInput(Instruction* instr, size_t index) HasImmediateInput() argument
174 HasRegisterInput(Instruction* instr, size_t index) HasRegisterInput() argument
1478 size_t index = 0; AssembleArchInstruction() local
2344 size_t index = 0; AssembleArchInstruction() local
2380 size_t index = 0; AssembleArchInstruction() local
2412 size_t index = 0; AssembleArchInstruction() local
2457 size_t index = 0; AssembleArchInstruction() local
2485 size_t index = 0; AssembleArchInstruction() local
2502 size_t index = 0; AssembleArchInstruction() local
2522 size_t index = 0; AssembleArchInstruction() local
2532 size_t index = 0; AssembleArchInstruction() local
2543 size_t index = 0; AssembleArchInstruction() local
2668 size_t index = 1; AssembleArchInstruction() local
3564 size_t index = 0; AssembleArchInstruction() local
3577 size_t index = 0; AssembleArchInstruction() local
3928 size_t index = 0; AssembleArchInstruction() local
3936 size_t index = 0; AssembleArchInstruction() local
[all...]
/third_party/icu/icu4c/source/common/
H A Dustrcase.cpp179 csc->index=csc->cpStart; in utf16_caseContextIterator()
183 csc->index=csc->cpLimit; in utf16_caseContextIterator()
191 if(csc->start<csc->index) { in utf16_caseContextIterator()
192 U16_PREV((const UChar *)csc->p, csc->start, csc->index, c); in utf16_caseContextIterator()
196 if(csc->index<csc->limit) { in utf16_caseContextIterator()
197 U16_NEXT((const UChar *)csc->p, csc->index, csc->limit, c); in utf16_caseContextIterator()
409 * start is the index in src after c, and is less than segmentLimit.
414 * @return the src index after the titlecased sequence, or the start index if no Dutch IJ
421 int32_t index in maybeTitleDutchIJ()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dustrcase.cpp179 csc->index=csc->cpStart; in utf16_caseContextIterator()
183 csc->index=csc->cpLimit; in utf16_caseContextIterator()
191 if(csc->start<csc->index) { in utf16_caseContextIterator()
192 U16_PREV((const char16_t *)csc->p, csc->start, csc->index, c); in utf16_caseContextIterator()
196 if(csc->index<csc->limit) { in utf16_caseContextIterator()
197 U16_NEXT((const char16_t *)csc->p, csc->index, csc->limit, c); in utf16_caseContextIterator()
409 * start is the index in src after c, and is less than segmentLimit.
414 * @return the src index after the titlecased sequence, or the start index if no Dutch IJ
421 int32_t index in maybeTitleDutchIJ()
[all...]
/third_party/node/deps/v8/src/compiler/backend/
H A Dinstruction.h220 UnallocatedOperand(BasicPolicy policy, int index, int virtual_register) in UnallocatedOperand() argument
224 value_ |= static_cast<uint64_t>(static_cast<int64_t>(index)) in UnallocatedOperand()
226 DCHECK(this->fixed_slot_index() == index); in UnallocatedOperand()
229 UnallocatedOperand(ExtendedPolicy policy, int index, int virtual_register) in UnallocatedOperand() argument
235 value_ |= FixedRegisterField::encode(index); in UnallocatedOperand()
360 // The slot index is a signed value which requires us to decode it manually
494 MachineRepresentation rep, int index) in LocationOperand()
496 DCHECK_IMPLIES(location_kind == REGISTER, index >= 0); in LocationOperand()
500 value_ |= static_cast<uint64_t>(static_cast<int64_t>(index)) in LocationOperand()
504 int index() cons function in v8::internal::compiler::LocationOperand
492 LocationOperand(InstructionOperand::Kind operand_kind, LocationOperand::LocationKind location_kind, MachineRepresentation rep, int index) LocationOperand() argument
596 AllocatedOperand(LocationKind kind, MachineRepresentation rep, int index) AllocatedOperand() argument
599 New(Zone* zone, LocationKind kind, MachineRepresentation rep, int index) New() argument
1072 FromInt(int index) FromInt() argument
1094 RpoNumber(int32_t index) RpoNumber() argument
1781 int index = static_cast<int>(immediates_.size()); AddImmediate() local
1793 int index = op->indexed_value(); GetImmediate() local
1799 int index = op->indexed_value(); GetImmediate() local
[all...]
H A Dregister-allocator.cc39 RpoNumber index = block->loop_header(); in GetContainingLoop() local
40 if (!index.IsValid()) return nullptr; in GetContainingLoop()
41 return sequence->InstructionBlockAt(index); in GetContainingLoop()
909 int index = spill_range->assigned_slot(); in GetSpillRangeOperand() local
910 return AllocatedOperand(LocationOperand::STACK_SLOT, representation(), index); in GetSpillRangeOperand()
1364 int index, Instruction::GapPosition position, in AddGapMove()
1366 Instruction* instr = code()->InstructionAt(index); in AddGapMove()
1378 int index) { in GetOrCreateLiveRangeFor()
1379 if (index >= static_cast<int>(live_ranges().size())) { in GetOrCreateLiveRangeFor()
1380 live_ranges().resize(index in GetOrCreateLiveRangeFor()
1363 AddGapMove( int index, Instruction::GapPosition position, const InstructionOperand& from, const InstructionOperand& to) AddGapMove() argument
1377 GetOrCreateLiveRangeFor( int index) GetOrCreateLiveRangeFor() argument
1391 NewLiveRange( int index, MachineRepresentation rep) NewLiveRange() argument
1491 MarkFixedUse(MachineRepresentation rep, int index) MarkFixedUse() argument
1525 HasFixedUse(MachineRepresentation rep, int index) HasFixedUse() argument
1559 MarkAllocated(MachineRepresentation rep, int index) MarkAllocated() argument
1793 int index = data()->frame()->AllocateSpillSlot(width); MeetConstraintsBefore() local
1910 size_t index = successor->PredecessorIndexOf(block->rpo_number()); ComputeLiveOut() local
1937 FixedFPLiveRangeID(int index, MachineRepresentation rep) FixedFPLiveRangeID() argument
1958 FixedLiveRangeFor(int index, SpillMode spill_mode) FixedLiveRangeFor() argument
1979 FixedFPLiveRangeFor( int index, MachineRepresentation rep, SpillMode spill_mode) FixedFPLiveRangeFor() argument
2017 FixedSIMD128LiveRangeFor( int index, SpillMode spill_mode) FixedSIMD128LiveRangeFor() argument
4660 int index = data()->frame()->AllocateSpillSlot(width, width); AssignSpillSlots() local
[all...]
/third_party/node/deps/v8/src/handles/
H A Dglobal-handles.cc62 NodeType* at(size_t index) { return &nodes_[index]; } in at() argument
63 const NodeType* at(size_t index) const { return &nodes_[index]; } in at()
76 void set_markbit(size_t index) { in set_markbit() argument
77 const auto [cell, bit] = CellAndBit(index); in set_markbit()
82 void clear_markbit(size_t index) { in clear_markbit() argument
83 const auto [cell, bit] = CellAndBit(index); in clear_markbit()
87 bool markbit(size_t index) const { in markbit()
88 const auto [cell, bit] = CellAndBit(index); in markbit()
277 const uint8_t index = static_cast<uint8_t>(i); PutNodesOnFreeList() local
354 uint8_t index() const { return index_; } index() function in v8::internal::NodeBase
1761 Create(Isolate* isolate, Object object, int* index) Create() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_vbuf.c33 * It does not upload index buffers.
184 /* The vertex buffer slot index where translated vertices have been
521 * value should be the max index value, but people often in u_vbuf_translate_buffers()
533 /* Subtract min_index so that indexing with the index buffer works. */ in u_vbuf_translate_buffers()
556 map = (uint8_t*)info->index.user + offset; in u_vbuf_translate_buffers()
558 map = pipe_buffer_map_range(mgr->pipe, info->index.resource, offset, in u_vbuf_translate_buffers()
640 uint32_t index; in u_vbuf_translate_find_free_vb_slots() local
647 index = ffs(unused_vb_mask) - 1; in u_vbuf_translate_find_free_vb_slots()
648 fallback_vbs[type] = index; in u_vbuf_translate_find_free_vb_slots()
649 mgr->fallback_vbs_mask |= 1 << index; in u_vbuf_translate_find_free_vb_slots()
658 uint32_t index = ffs(unused_vb_mask_orig) - 1; u_vbuf_translate_find_free_vb_slots() local
1175 unsigned index = velem->vertex_buffer_index; u_vbuf_upload_buffers() local
1207 unsigned index = velem->vertex_buffer_index; u_vbuf_upload_buffers() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A DlibGLESv2_autogen.cpp34 void GL_APIENTRY glBindAttribLocation(GLuint program, GLuint index, const GLchar *name) in glBindAttribLocation() argument
36 return GL_BindAttribLocation(program, index, name); in glBindAttribLocation()
253 void GL_APIENTRY glDisableVertexAttribArray(GLuint index) in glDisableVertexAttribArray() argument
255 return GL_DisableVertexAttribArray(index); in glDisableVertexAttribArray()
273 void GL_APIENTRY glEnableVertexAttribArray(GLuint index) in glEnableVertexAttribArray() argument
275 return GL_EnableVertexAttribArray(index); in glEnableVertexAttribArray()
336 GLuint index, in glGetActiveAttrib()
343 return GL_GetActiveAttrib(program, index, bufSize, length, size, type, name); in glGetActiveAttrib()
347 GLuint index, in glGetActiveUniform()
354 return GL_GetActiveUniform(program, index, bufSiz in glGetActiveUniform()
335 glGetActiveAttrib(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name) glGetActiveAttrib() argument
346 glGetActiveUniform(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name) glGetActiveUniform() argument
477 glGetVertexAttribPointerv(GLuint index, GLenum pname, void **pointer) glGetVertexAttribPointerv() argument
482 glGetVertexAttribfv(GLuint index, GLenum pname, GLfloat *params) glGetVertexAttribfv() argument
487 glGetVertexAttribiv(GLuint index, GLenum pname, GLint *params) glGetVertexAttribiv() argument
794 glVertexAttrib1f(GLuint index, GLfloat x) glVertexAttrib1f() argument
799 glVertexAttrib1fv(GLuint index, const GLfloat *v) glVertexAttrib1fv() argument
804 glVertexAttrib2f(GLuint index, GLfloat x, GLfloat y) glVertexAttrib2f() argument
809 glVertexAttrib2fv(GLuint index, const GLfloat *v) glVertexAttrib2fv() argument
814 glVertexAttrib3f(GLuint index, GLfloat x, GLfloat y, GLfloat z) glVertexAttrib3f() argument
819 glVertexAttrib3fv(GLuint index, const GLfloat *v) glVertexAttrib3fv() argument
824 glVertexAttrib4f(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) glVertexAttrib4f() argument
829 glVertexAttrib4fv(GLuint index, const GLfloat *v) glVertexAttrib4fv() argument
834 glVertexAttribPointer(GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const void *pointer) glVertexAttribPointer() argument
860 glBindBufferBase(GLenum target, GLuint index, GLuint buffer) glBindBufferBase() argument
866 glBindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) glBindBufferRange() argument
1125 glGetInteger64i_v(GLenum target, GLuint index, GLint64 *data) glGetInteger64i_v() argument
1135 glGetIntegeri_v(GLenum target, GLuint index, GLint *data) glGetIntegeri_v() argument
1178 glGetStringi(GLenum name, GLuint index) glGetStringi() argument
1189 glGetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) glGetTransformFeedbackVarying() argument
1218 glGetVertexAttribIiv(GLuint index, GLenum pname, GLint *params) glGetVertexAttribIiv() argument
1223 glGetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params) glGetVertexAttribIuiv() argument
1491 glVertexAttribDivisor(GLuint index, GLuint divisor) glVertexAttribDivisor() argument
1496 glVertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w) glVertexAttribI4i() argument
1501 glVertexAttribI4iv(GLuint index, const GLint *v) glVertexAttribI4iv() argument
1506 glVertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) glVertexAttribI4ui() argument
1511 glVertexAttribI4uiv(GLuint index, const GLuint *v) glVertexAttribI4uiv() argument
1517 glVertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) glVertexAttribIPointer() argument
1597 glGetBooleani_v(GLenum target, GLuint index, GLboolean *data) glGetBooleani_v() argument
1607 glGetMultisamplefv(GLenum pname, GLuint index, GLfloat *val) glGetMultisamplefv() argument
1647 glGetProgramResourceName(GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name) glGetProgramResourceName() argument
1657 glGetProgramResourceiv(GLuint program, GLenum programInterface, GLuint index, GLsizei propCount, const GLenum *props, GLsizei bufSize, GLsizei *length, GLint *params) glGetProgramResourceiv() argument
2017 glColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a) glColorMaski() argument
2067 glDisablei(GLenum target, GLuint index) glDisablei() argument
2103 glEnablei(GLenum target, GLuint index) glEnablei() argument
2185 glIsEnabledi(GLenum target, GLuint index) glIsEnabledi() argument
2886 glVertexAttribDivisorANGLE(GLuint index, GLuint divisor) glVertexAttribDivisorANGLE() argument
3135 glGetVertexAttribfvRobustANGLE(GLuint index, GLenum pname, GLsizei bufSize, GLsizei *length, GLfloat *params) glGetVertexAttribfvRobustANGLE() argument
3144 glGetVertexAttribivRobustANGLE(GLuint index, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *params) glGetVertexAttribivRobustANGLE() argument
3153 glGetVertexAttribPointervRobustANGLE(GLuint index, GLenum pname, GLsizei bufSize, GLsizei *length, void **pointer) glGetVertexAttribPointervRobustANGLE() argument
3345 glGetIntegeri_vRobustANGLE(GLenum target, GLuint index, GLsizei bufSize, GLsizei *length, GLint *data) glGetIntegeri_vRobustANGLE() argument
3365 glGetVertexAttribIivRobustANGLE(GLuint index, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *params) glGetVertexAttribIivRobustANGLE() argument
3374 glGetVertexAttribIuivRobustANGLE(GLuint index, GLenum pname, GLsizei bufSize, GLsizei *length, GLuint *params) glGetVertexAttribIuivRobustANGLE() argument
3411 glGetInteger64i_vRobustANGLE(GLenum target, GLuint index, GLsizei bufSize, GLsizei *length, GLint64 *data) glGetInteger64i_vRobustANGLE() argument
3483 glGetBooleani_vRobustANGLE(GLenum target, GLuint index, GLsizei bufSize, GLsizei *length, GLboolean *data) glGetBooleani_vRobustANGLE() argument
3492 glGetMultisamplefvRobustANGLE(GLenum pname, GLuint index, GLsizei bufSize, GLsizei *length, GLfloat *val) glGetMultisamplefvRobustANGLE() argument
3710 glGetMultisamplefvANGLE(GLenum pname, GLuint index, GLfloat *val) glGetMultisamplefvANGLE() argument
3834 glBindFragDataLocationIndexedEXT(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name) glBindFragDataLocationIndexedEXT() argument
4024 glColorMaskiEXT(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a) glColorMaskiEXT() argument
4029 glDisableiEXT(GLenum target, GLuint index) glDisableiEXT() argument
4034 glEnableiEXT(GLenum target, GLuint index) glEnableiEXT() argument
4039 glIsEnablediEXT(GLenum target, GLuint index) glIsEnablediEXT() argument
4136 glVertexAttribDivisorEXT(GLuint index, GLuint divisor) glVertexAttribDivisorEXT() argument
4184 glGetUnsignedBytei_vEXT(GLenum target, GLuint index, GLubyte *data) glGetUnsignedBytei_vEXT() argument
5089 glColorMaskiOES(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a) glColorMaskiOES() argument
5094 glDisableiOES(GLenum target, GLuint index) glDisableiOES() argument
5099 glEnableiOES(GLenum target, GLuint index) glEnableiOES() argument
5104 glIsEnablediOES(GLenum target, GLuint index) glIsEnablediOES() argument
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/filter/interfaces/
H A Dfilter.js1648 this.selectedFilters[rowIndex].index === colIndex) {
1691 if (this.selectedFilters && colIndex !== this.selectedFilters[rowIndex].index) {
1700 this.colorArr[rowIndex][this.selectedFilters[rowIndex].index] = {
1710 this.fontWeightArr[rowIndex][this.selectedFilters[rowIndex].index] = FontWeight.Regular;
1714 this.selectedFilters[rowIndex].index = colIndex;
1740 let result = { name: filter.name, index: -1, value: '' };
1742 result.index = 0;
1748 let result = { name: this.additionFilters.name, index: -1, value: '' };
1771 for (let index of filter.options.keys()) {
1772 if (index
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/
H A Dsearch_pattern.cpp295 textAccessibilityProperty->SetActionSetIndex([weakPtr = WeakClaim(this)](int32_t index) { in SetAccessibilityAction()
298 pattern->HandleCaretPosition(index); in SetAccessibilityAction()
304 auto index = pattern->HandleGetCaretIndex(); in SetAccessibilityAction()
305 return index; in SetAccessibilityAction()
1765 void SearchPattern::CreateOrUpdateSymbol(int32_t index, bool isCreateNode, bool isFromModifier) in CreateOrUpdateSymbol() argument
1778 layoutProperty->UpdateSymbolSourceInfo(index == IMAGE_INDEX ? SymbolSourceInfo(searchTheme->GetSearchSymbolId()) in CreateOrUpdateSymbol()
1781 index == IMAGE_INDEX ? GetSearchNode()->GetSearchSymbolIconSize() : GetSearchNode()->GetCancelSymbolIconSize()); in CreateOrUpdateSymbol()
1782 layoutProperty->UpdateSymbolColorList({index == IMAGE_INDEX ? GetSearchNode()->GetSearchSymbolIconColor() in CreateOrUpdateSymbol()
1790 iconFrameNode->UpdateInspectorId(INSPECTOR_PREFIX + SPECICALIZED_INSPECTOR_INDEXS[index] + parentInspector); in CreateOrUpdateSymbol()
1793 UpdateSymbolIconProperties(iconFrameNode, index); in CreateOrUpdateSymbol()
1816 CreateOrUpdateImage(int32_t index, bool isCreateNode) CreateOrUpdateImage() argument
2000 UpdateImageIconNode(int32_t index) UpdateImageIconNode() argument
2015 UpdateSymbolIconNode(int32_t index) UpdateSymbolIconNode() argument
2030 UpdateImageIconProperties(RefPtr<FrameNode>& iconFrameNode, int32_t index) UpdateImageIconProperties() argument
2078 UpdateSymbolIconProperties(RefPtr<FrameNode>& iconFrameNode, int32_t index) UpdateSymbolIconProperties() argument
2121 IsSymbolIcon(int32_t index) IsSymbolIcon() argument
[all...]
/third_party/node/deps/v8/src/wasm/
H A Dmodule-decoder.cc787 0 // index in DecodeImportSection()
798 import->index = static_cast<uint32_t>(module_->functions.size()); in DecodeImportSection()
801 import->index, // func_index in DecodeImportSection()
815 import->index = static_cast<uint32_t>(module_->tables.size()); in DecodeImportSection()
848 import->index = static_cast<uint32_t>(module_->globals.size()); in DecodeImportSection()
864 import->index = static_cast<uint32_t>(module_->tags.size()); in DecodeImportSection()
974 0 // index in DecodeExportSection()
985 exp->index = in DecodeExportSection()
986 consume_func_index(module_.get(), &func, "export function index"); in DecodeExportSection()
999 exp->index in DecodeExportSection()
1004 uint32_t index = consume_u32v("memory index"); DecodeExportSection() local
1141 DecodeFunctionBody(uint32_t index, uint32_t length, uint32_t offset, bool verify_functions) DecodeFunctionBody() argument
1745 uint32_t index = consume_u32v(name); consume_index() local
1893 uint32_t index = consume_init_expr() local
2170 consume_data_segment_header(bool* is_active, uint32_t* index, ConstantExpression* offset) consume_data_segment_header() argument
2205 uint32_t index = consume_element_func_index() local
2303 DecodeFunctionBody(uint32_t index, uint32_t length, uint32_t offset, bool verify_functions) DecodeFunctionBody() argument
2537 uint32_t index = decoder.consume_u32v("index"); DecodeNameMap() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderRendering.cpp1468 * index data to be used for glDrawElements*() calls.
1481 /** Returns index data for the test. Only to be used for glDrawElements*() calls.
1494 /** Returns type of the index, to be used for glDrawElements*() calls.
1503 /** Retrieves maximum index value. To be used for glDrawRangeElements() test only.
1512 /** Retrieves minimum index value. To be used for glDrawRangeElements() test only.
1766 TCU_FAIL("Invalid edge index"); in verify()
1780 int index = m_unordered_elements_data[n_point]; in verify() local
1782 reference_data = ref_data + (8 - 1 - index) * 4 /* components */; in verify()
1783 x = x_start + index * 7 /* pixel block size */; in verify()
1838 int index in verify() local
1899 int index = m_unordered_elements_data[n_point]; verify() local
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/matrix/src/
H A Ddevice_matrix.cpp237 uint16_t index = ConvertIndex(code); in ConvertDynamic() local
238 if (index >= meta.dynamicInfo.size()) { in ConvertDynamic()
241 const auto &app = meta.dynamicInfo[index]; in ConvertDynamic()
258 uint16_t index = ConvertIndex(code); in ConvertStatics() local
259 if (index >= meta.staticsInfo.size()) { in ConvertStatics()
262 const auto &app = meta.staticsInfo[index]; in ConvertStatics()
276 uint16_t index = (~code) & (code - 1); in ConvertIndex() local
278 index = ((index & 0xAAAA) >> 1) + (index in ConvertIndex()
[all...]
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_resolve_fs.c251 build_depth_stencil_resolve_fragment_shader(struct radv_device *dev, int samples, int index, in build_depth_stencil_resolve_fragment_shader() argument
254 enum glsl_base_type img_base_type = index == DEPTH_RESOLVE ? GLSL_TYPE_FLOAT : GLSL_TYPE_UINT; in build_depth_stencil_resolve_fragment_shader()
260 index == DEPTH_RESOLVE ? "depth" : "stencil", in build_depth_stencil_resolve_fragment_shader()
268 fs_out->data.location = index == DEPTH_RESOLVE ? FRAG_RESULT_DEPTH : FRAG_RESULT_STENCIL; in build_depth_stencil_resolve_fragment_shader()
278 nir_alu_type type = index == DEPTH_RESOLVE ? nir_type_float32 : nir_type_uint32; in build_depth_stencil_resolve_fragment_shader()
318 assert(index == DEPTH_RESOLVE); in build_depth_stencil_resolve_fragment_shader()
322 if (index == DEPTH_RESOLVE) in build_depth_stencil_resolve_fragment_shader()
328 if (index == DEPTH_RESOLVE) in build_depth_stencil_resolve_fragment_shader()
348 create_depth_stencil_resolve_pipeline(struct radv_device *device, int samples_log2, int index, in create_depth_stencil_resolve_pipeline() argument
358 if (index in create_depth_stencil_resolve_pipeline()
758 int index = aspects == VK_IMAGE_ASPECT_DEPTH_BIT ? DEPTH_RESOLVE : STENCIL_RESOLVE; emit_depth_stencil_resolve() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DState.h152 void setColorMaskIndexed(bool red, bool green, bool blue, bool alpha, GLuint index);
189 bool isBlendEnabledIndexed(GLuint index) const in isBlendEnabledIndexed()
191 ASSERT(static_cast<size_t>(index) < mBlendStateExt.mMaxDrawBuffers); in isBlendEnabledIndexed()
192 return mBlendStateExt.mEnabledMask.test(index); in isBlendEnabledIndexed()
196 void setBlendIndexed(bool enabled, GLuint index);
202 GLuint index);
205 void setBlendEquationIndexed(GLenum rgbEquation, GLenum alphaEquation, GLuint index);
276 void setEnableFeatureIndexed(GLenum feature, bool enabled, GLuint index);
278 bool getEnableFeatureIndexed(GLenum feature, GLuint index) const;
438 GLuint index,
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DProgramGL.cpp370 mState.getOutputVariables()[outputLocation.index]; in link()
371 if (outputVar.location == -1 || outputVar.index == -1) in link()
373 // We only need to assign the location and index via the API in case the in link()
374 // variable doesn't have a shader-assigned location and index. If a in link()
376 // the index set either. in link()
377 ASSERT(outputVar.index == -1); in link()
393 mState.getOutputVariables()[outputLocation.index]; in link()
394 if (outputVar.location == -1 || outputVar.index == -1) in link()
396 // We only need to assign the location and index via the API in case the in link()
397 // variable doesn't have a shader-assigned location and index in link()
882 GLuint index = getShaderStorageBlockMemberInfo() local
913 GLuint index = getShaderStorageBlockSize() local
[all...]
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp689 virtual void primitiveRestartIndex (deUint32 index);
711 virtual void vertexAttribPointer (deUint32 index, int size, deUint32 type, deBool normalized, int stride, const void *pointer);
712 virtual void vertexAttribIPointer (deUint32 index, int size, deUint32 type, int stride, const void *pointer);
713 virtual void enableVertexAttribArray (deUint32 index);
714 virtual void disableVertexAttribArray(deUint32 index);
715 virtual void vertexAttribDivisor (deUint32 index, deUint32 divisor);
717 virtual void vertexAttrib1f (deUint32 index, float);
718 virtual void vertexAttrib2f (deUint32 index, float, float);
719 virtual void vertexAttrib3f (deUint32 index, float, float, float);
720 virtual void vertexAttrib4f (deUint32 index, floa
[all...]
/foundation/communication/dsoftbus/core/transmission/trans_channel/common/src/
H A Dtrans_qos_info.c18 void GetExtQosInfo(const SessionParam *param, QosInfo *qosInfo, uint32_t index, AllocExtendInfo *extendInfo) in GetExtQosInfo() argument
22 (void)index; in GetExtQosInfo()
/third_party/libphonenumber/cpp/test/phonenumbers/geocoding/
H A Dgeocoding_test_data.h31 // Returns the CountryLanguages record for country at index, index
33 const CountryLanguages* get_test_country_languages(int index);
43 // Returns the PrefixDescriptions for language/code pair at index,
44 // index being in [0, get_prefix_language_code_pairs_size()).
45 const PrefixDescriptions* get_test_prefix_descriptions(int index);
/third_party/mesa3d/include/GLES3/
H A Dgl32.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 Dgl32.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/opengl-registry/api/GLES3/
H A Dgl32.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 Dgl32.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...]
/foundation/ability/ability_runtime/frameworks/native/ability/native/
H A Ddata_ability_helper_impl.cpp375 * @return Returns the index of the inserted data record.
379 int index = -1; in Insert() local
383 return index; in Insert()
386 index = dataAbilityProxy->Insert(uri, value); in Insert()
389 TAG_LOGI(AAFwkTag::DATA_ABILITY, "index: %{public}d", index); in Insert()
390 return index; in Insert()
422 int index = -1; in Update() local
426 return index; in Update()
429 index in Update()
446 int index = -1; Delete() local
[all...]

Completed in 66 milliseconds

1...<<121122123124125126127128129130>>...423