Home
last modified time | relevance | path

Searched refs:index (Results 726 - 750 of 20961) sorted by relevance

1...<<21222324252627282930>>...839

/kernel/linux/linux-5.10/include/linux/
H A Dradix-tree.h46 * the tree for this index (no matter what level of the tree it is found at).
92 * @index: index of current slot
93 * @next_index: one beyond the last index for this chunk
105 unsigned long index; member
217 int radix_tree_insert(struct radix_tree_root *, unsigned long index,
219 void *__radix_tree_lookup(const struct radix_tree_root *, unsigned long index,
223 unsigned long index);
241 unsigned long index, unsigned int tag);
243 unsigned long index, unsigne
321 radix_tree_iter_lookup(const struct radix_tree_root *root, struct radix_tree_iter *iter, unsigned long index) radix_tree_iter_lookup() argument
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dradix-tree.h48 * the tree for this index (no matter what level of the tree it is found at).
94 * @index: index of current slot
95 * @next_index: one beyond the last index for this chunk
107 unsigned long index; member
219 int radix_tree_insert(struct radix_tree_root *, unsigned long index,
221 void *__radix_tree_lookup(const struct radix_tree_root *, unsigned long index,
225 unsigned long index);
243 unsigned long index, unsigned int tag);
245 unsigned long index, unsigne
323 radix_tree_iter_lookup(const struct radix_tree_root *root, struct radix_tree_iter *iter, unsigned long index) radix_tree_iter_lookup() argument
[all...]
/kernel/linux/linux-6.6/tools/virtio/ringtest/
H A Dvirtio_ring_0_9.c6 * Partial implementation of virtio 0.9. event index is used for signalling,
25 * (which skips index reads on consumer in favor of looking at
55 /* we do not need to track last avail index
155 unsigned index; in get_buf() local
160 index = ring.used->ring[head].id; in get_buf()
161 if ((index ^ guest.last_used_idx ^ 0x8000) & ~(ring_size - 1)) in get_buf()
165 index &= ring_size - 1; in get_buf()
173 index = head; in get_buf()
176 index = ring.used->ring[head].id; in get_buf()
181 *lenp = ring.desc[index] in get_buf()
202 unsigned index = ring.used->ring[head].id; used_empty() local
262 unsigned index = ring.avail->ring[head & (ring_size - 1)]; avail_empty() local
[all...]
/third_party/node/deps/v8/include/
H A Dv8-context.h100 * \param context_snapshot_index The index of the context snapshot to
184 * Gets the embedder data with the given index, which must have been set by a
185 * previous call to SetEmbedderData with the same index.
187 V8_INLINE Local<Value> GetEmbedderData(int index);
198 * Sets the embedder data with the given index, growing the data as
199 * needed. Note that index 0 currently has a special meaning for Chrome's
202 void SetEmbedderData(int index, Local<Value> value);
206 * index, which must have been set by a previous call to
207 * SetAlignedPointerInEmbedderData with the same index. Note that index
345 GetEmbedderData(int index) GetEmbedderData() argument
370 GetAlignedPointerFromEmbedderData(int index) GetAlignedPointerFromEmbedderData() argument
392 GetDataFromSnapshotOnce(size_t index) GetDataFromSnapshotOnce() argument
[all...]
/third_party/node/deps/v8/include/v8-include/
H A Dv8-context.h103 * \param context_snapshot_index The index of the context snapshot to
226 * Gets the embedder data with the given index, which must have been set by a
227 * previous call to SetEmbedderData with the same index.
229 V8_INLINE Local<Value> GetEmbedderData(int index);
240 * Sets the embedder data with the given index, growing the data as
241 * needed. Note that index 0 currently has a special meaning for Chrome's
244 void SetEmbedderData(int index, Local<Value> value);
248 * index, which must have been set by a previous call to
249 * SetAlignedPointerInEmbedderData with the same index. Note that index
394 GetEmbedderData(int index) GetEmbedderData() argument
418 GetAlignedPointerFromEmbedderData(int index) GetAlignedPointerFromEmbedderData() argument
438 GetDataFromSnapshotOnce(size_t index) GetDataFromSnapshotOnce() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Dliveness.c85 unsigned int index = reg->regalloc_index; in ppir_liveness_instr_srcs() local
91 BITSET_SET(instr->live_internal, index); in ppir_liveness_instr_srcs()
95 bool live = BITSET_TEST(instr->live_set, index); in ppir_liveness_instr_srcs()
101 BITSET_SET(instr->live_set, index); in ppir_liveness_instr_srcs()
105 uint8_t live_mask = get_reg_mask(instr->live_mask, index); in ppir_liveness_instr_srcs()
113 set_reg_mask(instr->live_mask, index, (live_mask | mask)); in ppir_liveness_instr_srcs()
114 BITSET_SET(instr->live_set, index); in ppir_liveness_instr_srcs()
146 unsigned int index = reg->regalloc_index; in ppir_liveness_instr_dest() local
147 bool live = BITSET_TEST(instr->live_set, index); in ppir_liveness_instr_dest()
152 BITSET_SET(last->live_set, index); in ppir_liveness_instr_dest()
[all...]
/third_party/skia/src/sksl/ir/
H A DSkSLIndexExpression.cpp21 static bool index_out_of_range(const Context& context, SKSL_INT index, const Expression& base) { in index_out_of_range() argument
22 if (index >= 0 && index < base.type().columns()) { in index_out_of_range()
26 context.fErrors->error(base.fLine, "index " + to_string(index) + " out of range for '" + in index_out_of_range()
55 std::unique_ptr<Expression> index) { in Convert()
59 SKSL_INT arraySize = baseType.convertArraySize(context, std::move(index)); in Convert()
66 // Convert an index expression with an expression inside of it: `arr[a * 3]`. in Convert()
73 if (!index->type().isInteger()) { in Convert()
74 index in Convert()
52 Convert(const Context& context, SymbolTable& symbolTable, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Convert() argument
90 Make(const Context& context, std::unique_ptr<Expression> base, std::unique_ptr<Expression> index) Make() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseBitVector.h87 unsigned index() const {
126 /// find_first - Returns the index of the first set bit.
134 /// find_last - Returns the index of the last set bit.
145 /// find_next - Returns the index of the next set bit starting from the
295 if (CurrElementIter->index() == ElementIndex) {
297 } else if (CurrElementIter->index() > ElementIndex) {
299 && ElementIter->index() > ElementIndex)
303 ElementIter->index() < ElementIndex)
345 BitNumber = Iter->index() * ElementSize;
377 BitNumber = Iter->index() * ElementSiz
[all...]
/third_party/skia/src/pathops/
H A DSkPathOpsAsWinding.cpp66 for (int index = 0; index < count; ) { in contains_edge()
67 SkScalar intersectX = (*CurvePointAtT[verb])(pts, weight, tVals[index]).fX; in contains_edge()
69 ++index; in contains_edge()
73 tVals[index] = tVals[--count]; in contains_edge()
78 ++index; in contains_edge()
84 tVals[index] = tVals[--count]; in contains_edge()
87 for (int index = 0; index < count; ++index) { in contains_edge()
[all...]
H A DSkOpEdgeBuilder.cpp37 for (int index = 0; index <= SkPathOpsVerbToPoints(verb); ++index) { in can_add_curve()
38 curve[index] = force_small_to_zero(curve[index]); in can_add_curve()
214 for (unsigned index = 0; index < SK_ARRAY_COUNT(pair); ++index) { in walk()
215 pair[index] = force_small_to_zero(pair[index]); in walk()
[all...]
H A DSkDQuadLineIntersection.cpp118 for (int index = 0; index < last; ) { in checkCoincident()
119 double quadMidT = ((*fIntersections)[0][index] + (*fIntersections)[0][index + 1]) / 2; in checkCoincident()
123 ++index; in checkCoincident()
126 if (fIntersections->isCoincident(index)) { in checkCoincident()
127 fIntersections->removeOne(index); in checkCoincident()
129 } else if (fIntersections->isCoincident(index + 1)) { in checkCoincident()
130 fIntersections->removeOne(index + 1); in checkCoincident()
133 fIntersections->setCoincident(index in checkCoincident()
[all...]
H A DSkDConicLineIntersection.cpp40 for (int index = 0; index < last; ) { in checkCoincident()
41 double conicMidT = ((*fIntersections)[0][index] + (*fIntersections)[0][index + 1]) / 2; in checkCoincident()
45 ++index; in checkCoincident()
48 if (fIntersections->isCoincident(index)) { in checkCoincident()
49 fIntersections->removeOne(index); in checkCoincident()
51 } else if (fIntersections->isCoincident(index + 1)) { in checkCoincident()
52 fIntersections->removeOne(index + 1); in checkCoincident()
55 fIntersections->setCoincident(index in checkCoincident()
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Darray.c240 * @param long The index to be checked.
241 * @return bool True if the element at the given index exists.
245 zend_long index; in PHP_METHOD() local
247 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &index) == FAILURE) { in PHP_METHOD()
251 RETURN_BOOL(index >= 0 && index < upb_array_size(intern->array)); in PHP_METHOD()
261 * @param long The index of the element to be fetched.
262 * @return object The stored element at given index.
263 * @exception Invalid type for index.
264 * @exception Non-existing index
268 zend_long index; PHP_METHOD() local
305 int64_t index; PHP_METHOD() local
344 zend_long index; PHP_METHOD() local
517 zend_long index = intern->position; PHP_METHOD() local
[all...]
/kernel/linux/linux-5.10/arch/ia64/kernel/
H A Diosapic.c130 char rte_index; /* IOSAPIC RTE index */
556 int index; in register_intr() local
559 index = find_iosapic(gsi); in register_intr()
560 if (index < 0) { in register_intr()
575 rte->iosapic = &iosapic_lists[index]; in register_intr()
580 iosapic_lists[index].rtes_inuse++; in register_intr()
593 iosapic_lists[index].rtes_inuse++; in register_intr()
784 int irq, index; in iosapic_unregister_intr() local
821 index = find_iosapic(gsi); in iosapic_unregister_intr()
822 iosapic_lists[index] in iosapic_unregister_intr()
970 int index; iosapic_alloc() local
981 iosapic_free(int index) iosapic_free() argument
989 int index; iosapic_check_gsi_range() local
1031 int num_rte, err, index; iosapic_init() local
1088 int i, irq, index, err = 0; iosapic_remove() local
1126 int index; map_iosapic_to_node() local
[all...]
/kernel/linux/linux-6.6/arch/ia64/kernel/
H A Diosapic.c130 char rte_index; /* IOSAPIC RTE index */
556 int index; in register_intr() local
559 index = find_iosapic(gsi); in register_intr()
560 if (index < 0) { in register_intr()
575 rte->iosapic = &iosapic_lists[index]; in register_intr()
580 iosapic_lists[index].rtes_inuse++; in register_intr()
593 iosapic_lists[index].rtes_inuse++; in register_intr()
784 int irq, index; in iosapic_unregister_intr() local
821 index = find_iosapic(gsi); in iosapic_unregister_intr()
822 iosapic_lists[index] in iosapic_unregister_intr()
970 int index; iosapic_alloc() local
981 iosapic_free(int index) iosapic_free() argument
989 int index; iosapic_check_gsi_range() local
1031 int num_rte, err, index; iosapic_init() local
1088 int i, irq, index, err = 0; iosapic_remove() local
1126 int index; map_iosapic_to_node() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_3_autogen.cpp83 void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer) in GL_BindBufferBase() argument
86 EVENT(context, GLBindBufferBase, "context = %d, target = %s, index = %u, buffer = %u", in GL_BindBufferBase()
87 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer); in GL_BindBufferBase()
96 targetPacked, index, bufferPacked)); in GL_BindBufferBase()
99 context->bindBufferBase(targetPacked, index, bufferPacked); in GL_BindBufferBase()
101 ANGLE_CAPTURE(BindBufferBase, isCallValid, context, targetPacked, index, bufferPacked); in GL_BindBufferBase()
110 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) in GL_BindBufferRange() argument
114 "context = %d, target = %s, index = %u, buffer = %u, offset = %llu, size = %llu", in GL_BindBufferRange()
115 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer, in GL_BindBufferRange()
126 index, bufferPacke in GL_BindBufferRange()
438 GL_ColorMaski(GLuint index, GLboolean r, GLboolean g, GLboolean b, GLboolean a) GL_ColorMaski() argument
541 GL_Disablei(GLenum target, GLuint index) GL_Disablei() argument
565 GL_Enablei(GLenum target, GLuint index) GL_Enablei() argument
939 GL_GetBooleani_v(GLenum target, GLuint index, GLboolean *data) GL_GetBooleani_v() argument
1030 GL_GetIntegeri_v(GLenum target, GLuint index, GLint *data) GL_GetIntegeri_v() argument
1082 GL_GetStringi(GLenum name, GLuint index) GL_GetStringi() argument
1169 GL_GetTransformFeedbackVarying(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) GL_GetTransformFeedbackVarying() argument
1233 GL_GetVertexAttribIiv(GLuint index, GLenum pname, GLint *params) GL_GetVertexAttribIiv() argument
1259 GL_GetVertexAttribIuiv(GLuint index, GLenum pname, GLuint *params) GL_GetVertexAttribIuiv() argument
1285 GL_IsEnabledi(GLenum target, GLuint index) GL_IsEnabledi() argument
1801 GL_VertexAttribI1i(GLuint index, GLint x) GL_VertexAttribI1i() argument
1824 GL_VertexAttribI1iv(GLuint index, const GLint *v) GL_VertexAttribI1iv() argument
1848 GL_VertexAttribI1ui(GLuint index, GLuint x) GL_VertexAttribI1ui() argument
1871 GL_VertexAttribI1uiv(GLuint index, const GLuint *v) GL_VertexAttribI1uiv() argument
1895 GL_VertexAttribI2i(GLuint index, GLint x, GLint y) GL_VertexAttribI2i() argument
1919 GL_VertexAttribI2iv(GLuint index, const GLint *v) GL_VertexAttribI2iv() argument
1943 GL_VertexAttribI2ui(GLuint index, GLuint x, GLuint y) GL_VertexAttribI2ui() argument
1967 GL_VertexAttribI2uiv(GLuint index, const GLuint *v) GL_VertexAttribI2uiv() argument
1991 GL_VertexAttribI3i(GLuint index, GLint x, GLint y, GLint z) GL_VertexAttribI3i() argument
2015 GL_VertexAttribI3iv(GLuint index, const GLint *v) GL_VertexAttribI3iv() argument
2039 GL_VertexAttribI3ui(GLuint index, GLuint x, GLuint y, GLuint z) GL_VertexAttribI3ui() argument
2063 GL_VertexAttribI3uiv(GLuint index, const GLuint *v) GL_VertexAttribI3uiv() argument
2087 GL_VertexAttribI4bv(GLuint index, const GLbyte *v) GL_VertexAttribI4bv() argument
2111 GL_VertexAttribI4i(GLuint index, GLint x, GLint y, GLint z, GLint w) GL_VertexAttribI4i() argument
2135 GL_VertexAttribI4iv(GLuint index, const GLint *v) GL_VertexAttribI4iv() argument
2159 GL_VertexAttribI4sv(GLuint index, const GLshort *v) GL_VertexAttribI4sv() argument
2183 GL_VertexAttribI4ubv(GLuint index, const GLubyte *v) GL_VertexAttribI4ubv() argument
2207 GL_VertexAttribI4ui(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) GL_VertexAttribI4ui() argument
2231 GL_VertexAttribI4uiv(GLuint index, const GLuint *v) GL_VertexAttribI4uiv() argument
2255 GL_VertexAttribI4usv(GLuint index, const GLushort *v) GL_VertexAttribI4usv() argument
2280 GL_VertexAttribIPointer(GLuint index, GLint size, GLenum type, GLsizei stride, const void *pointer) GL_VertexAttribIPointer() argument
2624 GL_PrimitiveRestartIndex(GLuint index) GL_PrimitiveRestartIndex() argument
2966 GL_GetInteger64i_v(GLenum target, GLuint index, GLint64 *data) GL_GetInteger64i_v() argument
3015 GL_GetMultisamplefv(GLenum pname, GLuint index, GLfloat *val) GL_GetMultisamplefv() argument
3284 GL_BindFragDataLocationIndexed(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name) GL_BindFragDataLocationIndexed() argument
4395 GL_VertexAttribDivisor(GLuint index, GLuint divisor) GL_VertexAttribDivisor() argument
4419 GL_VertexAttribP1ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) GL_VertexAttribP1ui() argument
4445 GL_VertexAttribP1uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) GL_VertexAttribP1uiv() argument
4475 GL_VertexAttribP2ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) GL_VertexAttribP2ui() argument
4501 GL_VertexAttribP2uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) GL_VertexAttribP2uiv() argument
4531 GL_VertexAttribP3ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) GL_VertexAttribP3ui() argument
4557 GL_VertexAttribP3uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) GL_VertexAttribP3uiv() argument
4587 GL_VertexAttribP4ui(GLuint index, GLenum type, GLboolean normalized, GLuint value) GL_VertexAttribP4ui() argument
4613 GL_VertexAttribP4uiv(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) GL_VertexAttribP4uiv() argument
[all...]
/third_party/libunwind/libunwind/src/unwind/
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, in _Unwind_SetGR() argument
36 index = dwarf_to_unw_regnum(index); in _Unwind_SetGR()
38 unw_set_reg (&context->cursor, index, new_value); in _Unwind_SetGR()
40 if (index >= UNW_IA64_GR && index <= UNW_IA64_GR + 127) in _Unwind_SetGR()
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0); in _Unwind_SetGR()
/test/xts/hats/useriam/userauth_additional/src/
H A Duser_auth_hdi.cpp132 uint64_t index = 0; in HWTEST_F() local
139 EXPECT_EQ(g_service.AddExecutor(info, index, publicKey, templateIds), 0); in HWTEST_F()
140 EXPECT_EQ(g_service.DeleteExecutor(index), 0); in HWTEST_F()
151 uint64_t index = -1; in HWTEST_F() local
152 auto ret = g_service.DeleteExecutor(index); in HWTEST_F()
168 uint64_t index = 0; in HWTEST_F() local
171 EXPECT_EQ(g_service.AddExecutor(info, index, publicKey, templateIds), 0); in HWTEST_F()
173 auto ret = g_service.DeleteExecutor(index); in HWTEST_F()
189 uint64_t index = 0; in HWTEST_F() local
192 EXPECT_EQ(g_service.AddExecutor(info, index, publicKe in HWTEST_F()
274 uint64_t index = 0; HWTEST_F() local
330 uint64_t index = 0; HWTEST_F() local
373 uint64_t index = 0; HWTEST_F() local
470 uint64_t index = 0; HWTEST_F() local
533 uint64_t index = 0; HWTEST_F() local
575 uint64_t index = 0; HWTEST_F() local
668 uint64_t index = 0; HWTEST_F() local
703 uint64_t index = 0; HWTEST_F() local
737 uint64_t index = 0; HWTEST_F() local
766 uint64_t index = 0; HWTEST_F() local
854 uint64_t index = 0; HWTEST_F() local
893 uint64_t index = 0; HWTEST_F() local
939 uint64_t index = 0; HWTEST_F() local
986 uint64_t index = 0; HWTEST_F() local
1042 uint64_t index = 0; HWTEST_F() local
1081 uint64_t index = 0; HWTEST_F() local
[all...]
/drivers/peripheral/sensor/chipset/ppg/
H A Dppg_cs1262_spi.c168 for (uint16_t index = 0; index < dataLen; index++) { in Cs1262ReadRegs()
169 *(dataBuf + index) = ReverseEndianInt16(*(dataBuf + index)); in Cs1262ReadRegs()
194 for (uint16_t index = 0; index < dataLen; index++) { in Cs1262WriteRegs()
195 *(dataBuf + index) = ReverseEndianInt16(*(dataBuf + index)); in Cs1262WriteRegs()
[all...]
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/executive/
H A Dcvmx-interrupt-decodes.c51 void __cvmx_interrupt_gmxx_rxx_int_en_enable(int index, int block) in __cvmx_interrupt_gmxx_rxx_int_en_enable() argument
54 cvmx_write_csr(CVMX_GMXX_RXX_INT_REG(index, block), in __cvmx_interrupt_gmxx_rxx_int_en_enable()
55 cvmx_read_csr(CVMX_GMXX_RXX_INT_REG(index, block))); in __cvmx_interrupt_gmxx_rxx_int_en_enable()
227 cvmx_write_csr(CVMX_GMXX_RXX_INT_EN(index, block), gmx_rx_int_en.u64); in __cvmx_interrupt_gmxx_rxx_int_en_enable()
232 void __cvmx_interrupt_pcsx_intx_en_reg_enable(int index, int block) in __cvmx_interrupt_pcsx_intx_en_reg_enable() argument
235 cvmx_write_csr(CVMX_PCSX_INTX_REG(index, block), in __cvmx_interrupt_pcsx_intx_en_reg_enable()
236 cvmx_read_csr(CVMX_PCSX_INTX_REG(index, block))); in __cvmx_interrupt_pcsx_intx_en_reg_enable()
268 cvmx_write_csr(CVMX_PCSX_INTX_EN_REG(index, block), pcs_int_en_reg.u64); in __cvmx_interrupt_pcsx_intx_en_reg_enable()
273 void __cvmx_interrupt_pcsxx_int_en_reg_enable(int index) in __cvmx_interrupt_pcsxx_int_en_reg_enable() argument
276 cvmx_write_csr(CVMX_PCSXX_INT_REG(index), in __cvmx_interrupt_pcsxx_int_en_reg_enable()
303 __cvmx_interrupt_spxx_int_msk_enable(int index) __cvmx_interrupt_spxx_int_msk_enable() argument
342 __cvmx_interrupt_stxx_int_msk_enable(int index) __cvmx_interrupt_stxx_int_msk_enable() argument
[all...]
/kernel/linux/linux-6.6/arch/mips/cavium-octeon/executive/
H A Dcvmx-interrupt-decodes.c50 * @index: interrupt register offset
53 void __cvmx_interrupt_gmxx_rxx_int_en_enable(int index, int block) in __cvmx_interrupt_gmxx_rxx_int_en_enable() argument
56 cvmx_write_csr(CVMX_GMXX_RXX_INT_REG(index, block), in __cvmx_interrupt_gmxx_rxx_int_en_enable()
57 cvmx_read_csr(CVMX_GMXX_RXX_INT_REG(index, block))); in __cvmx_interrupt_gmxx_rxx_int_en_enable()
229 cvmx_write_csr(CVMX_GMXX_RXX_INT_EN(index, block), gmx_rx_int_en.u64); in __cvmx_interrupt_gmxx_rxx_int_en_enable()
233 * @index: interrupt register offset
236 void __cvmx_interrupt_pcsx_intx_en_reg_enable(int index, int block) in __cvmx_interrupt_pcsx_intx_en_reg_enable() argument
239 cvmx_write_csr(CVMX_PCSX_INTX_REG(index, block), in __cvmx_interrupt_pcsx_intx_en_reg_enable()
240 cvmx_read_csr(CVMX_PCSX_INTX_REG(index, block))); in __cvmx_interrupt_pcsx_intx_en_reg_enable()
272 cvmx_write_csr(CVMX_PCSX_INTX_EN_REG(index, bloc in __cvmx_interrupt_pcsx_intx_en_reg_enable()
278 __cvmx_interrupt_pcsxx_int_en_reg_enable(int index) __cvmx_interrupt_pcsxx_int_en_reg_enable() argument
309 __cvmx_interrupt_spxx_int_msk_enable(int index) __cvmx_interrupt_spxx_int_msk_enable() argument
349 __cvmx_interrupt_stxx_int_msk_enable(int index) __cvmx_interrupt_stxx_int_msk_enable() argument
[all...]
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCheckTags.java71 private int index; field in CheckTags.DocStack
78 if (index == stack.length) { in push()
80 System.arraycopy(stack, 0, temp, 0, index); in push()
84 if (stack[index] == null) { in push()
85 stack[index] = new DocNode(); in push()
87 // System.out.println("reset [" + index + "] header: " + header + " report: " + reportError); in push()
88 stack[index++].reset(header, reportError); in push()
92 if (index == 0) { in pop()
95 --index; in pop()
97 int ec = stack[index] in pop()
[all...]
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslation-array.cc28 int index) in TranslationArrayIterator()
29 : buffer_(buffer), index_(index) { in TranslationArrayIterator()
43 DCHECK(index >= 0 && index < size); in TranslationArrayIterator()
45 DCHECK(index >= 0 && index < buffer.length()); in TranslationArrayIterator()
259 void TranslationArrayBuilder::StoreStackSlot(int index) { in StoreStackSlot() argument
262 Add(index); in StoreStackSlot()
266 void TranslationArrayBuilder::StoreInt32StackSlot(int index) { in StoreInt32StackSlot() argument
269 Add(index); in StoreInt32StackSlot()
27 TranslationArrayIterator(TranslationArray buffer, int index) TranslationArrayIterator() argument
273 StoreInt64StackSlot(int index) StoreInt64StackSlot() argument
280 StoreUint32StackSlot(int index) StoreUint32StackSlot() argument
287 StoreBoolStackSlot(int index) StoreBoolStackSlot() argument
294 StoreFloatStackSlot(int index) StoreFloatStackSlot() argument
301 StoreDoubleStackSlot(int index) StoreDoubleStackSlot() argument
[all...]
/third_party/node/deps/v8/src/objects/
H A Dlookup-inl.h17 #include "src/objects/internal-index.h"
38 size_t index, Configuration configuration) in LookupIterator()
39 : LookupIterator(isolate, receiver, Handle<Name>(), index, receiver, in LookupIterator()
41 DCHECK_NE(index, kInvalidIndex); in LookupIterator()
45 size_t index, Handle<Object> lookup_start_object, in LookupIterator()
47 : LookupIterator(isolate, receiver, Handle<Name>(), index, in LookupIterator()
49 DCHECK_NE(index, kInvalidIndex); in LookupIterator()
55 : LookupIterator(isolate, receiver, key.name(), key.index(), receiver, in LookupIterator()
62 : LookupIterator(isolate, receiver, key.name(), key.index(), in LookupIterator()
68 Handle<Name> name, size_t index, in LookupIterator()
37 LookupIterator(Isolate* isolate, Handle<Object> receiver, size_t index, Configuration configuration) LookupIterator() argument
44 LookupIterator(Isolate* isolate, Handle<Object> receiver, size_t index, Handle<Object> lookup_start_object, Configuration configuration) LookupIterator() argument
67 LookupIterator(Isolate* isolate, Handle<Object> receiver, Handle<Name> name, size_t index, Handle<Object> lookup_start_object, Configuration configuration) LookupIterator() argument
115 PropertyKey(Isolate* isolate, double index) PropertyKey() argument
265 GetRoot(Isolate* isolate, Handle<Object> lookup_start_object, size_t index) GetRoot() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLKernelCL.cpp44 cl_uint index, in GetArgInfo()
49 errorCode = kernel->getDispatch().clGetKernelArgInfo(kernel, index, cl::ToCLenum(name), in GetArgInfo()
67 cl_uint index, in GetArgString()
73 errorCode = kernel->getDispatch().clGetKernelArgInfo(kernel, index, cl::ToCLenum(name), 0u, in GetArgString()
85 errorCode = kernel->getDispatch().clGetKernelArgInfo(kernel, index, cl::ToCLenum(name), size, in GetArgString()
184 for (size_t index = 0u; index < ctx.getDevices().size(); ++index) in createInfo()
186 const cl_device_id device = ctx.getDevices()[index]->getImpl<CLDeviceCL>().getNative(); in createInfo()
187 WorkGroupInfo &workGroup = info.workGroups[index]; in createInfo()
43 GetArgInfo(cl_kernel kernel, cl_uint index, cl::KernelArgInfo name, T &value, cl_int &errorCode) GetArgInfo() argument
66 GetArgString(cl_kernel kernel, cl_uint index, cl::KernelArgInfo name, std::string &string, cl_int &errorCode) GetArgString() argument
[all...]

Completed in 23 milliseconds

1...<<21222324252627282930>>...839