Home
last modified time | relevance | path

Searched refs:index (Results 101 - 125 of 8663) sorted by relevance

12345678910>>...347

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DFormattedStringBuilder.java90 public char charAt(int index) { in charAt() argument
91 assert index >= 0; in charAt()
92 assert index < length; in charAt()
93 return chars[zero + index]; in charAt()
96 public Object fieldAt(int index) { in fieldAt() argument
97 assert index >= 0; in fieldAt()
98 assert index < length; in fieldAt()
99 return fields[zero + index]; in fieldAt()
116 public int codePointAt(int index) { in codePointAt() argument
117 return Character.codePointAt(chars, zero + index, zer in codePointAt()
120 codePointBefore(int index) codePointBefore() argument
135 setAppendIndex(int index) setAppendIndex() argument
143 insertChar16(int index, char codeUnit, Object field) insertChar16() argument
165 insertCodePoint(int index, int codePoint, Object field) insertCodePoint() argument
189 insert(int index, CharSequence sequence, Object field) insert() argument
208 insert(int index, CharSequence sequence, int start, int end, Object field) insert() argument
267 insert(int index, char[] chars, Object[] fields) insert() argument
294 insert(int index, FormattedStringBuilder other) insert() argument
320 prepareForInsert(int index, int count) prepareForInsert() argument
339 prepareForInsertHelper(int index, int count) prepareForInsertHelper() argument
400 remove(int index, int count) remove() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DFormattedStringBuilder.java76 public char charAt(int index) { in charAt() argument
77 assert index >= 0; in charAt()
78 assert index < length; in charAt()
79 return chars[zero + index]; in charAt()
82 public Object fieldAt(int index) { in fieldAt() argument
83 assert index >= 0; in fieldAt()
84 assert index < length; in fieldAt()
85 return fields[zero + index]; in fieldAt()
102 public int codePointAt(int index) { in codePointAt() argument
103 return Character.codePointAt(chars, zero + index, zer in codePointAt()
106 codePointBefore(int index) codePointBefore() argument
121 setAppendIndex(int index) setAppendIndex() argument
129 insertChar16(int index, char codeUnit, Object field) insertChar16() argument
151 insertCodePoint(int index, int codePoint, Object field) insertCodePoint() argument
175 insert(int index, CharSequence sequence, Object field) insert() argument
194 insert(int index, CharSequence sequence, int start, int end, Object field) insert() argument
253 insert(int index, char[] chars, Object[] fields) insert() argument
280 insert(int index, FormattedStringBuilder other) insert() argument
306 prepareForInsert(int index, int count) prepareForInsert() argument
325 prepareForInsertHelper(int index, int count) prepareForInsertHelper() argument
386 remove(int index, int count) remove() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DRenderer.cpp641 for(int index = 0; index < RENDERTARGETS; index++) in draw()
643 draw->renderTarget[index] = context->renderTarget[index]; in draw()
645 if(draw->renderTarget[index]) in draw()
647 unsigned int layer = context->renderTargetLayer[index]; in draw()
648 requiresSync |= context->renderTarget[index]->requiresSync(); in draw()
649 data->colorBuffer[index] = (unsigned int*)context->renderTarget[index] in draw()
1141 unsigned int index = start; processPrimitiveVertices() local
1155 unsigned int index = 2 * start; processPrimitiveVertices() local
1169 unsigned int index = start; processPrimitiveVertices() local
1183 unsigned int index = start; processPrimitiveVertices() local
1197 unsigned int index = 3 * start; processPrimitiveVertices() local
1211 unsigned int index = start; processPrimitiveVertices() local
1234 unsigned int index = start; processPrimitiveVertices() local
1257 const unsigned char *index = (const unsigned char*)indices + start; processPrimitiveVertices() local
1271 const unsigned short *index = (const unsigned short*)indices + start; processPrimitiveVertices() local
1285 const unsigned int *index = (const unsigned int*)indices + start; processPrimitiveVertices() local
1299 const unsigned char *index = (const unsigned char*)indices + 2 * start; processPrimitiveVertices() local
1313 const unsigned short *index = (const unsigned short*)indices + 2 * start; processPrimitiveVertices() local
1327 const unsigned int *index = (const unsigned int*)indices + 2 * start; processPrimitiveVertices() local
1341 const unsigned char *index = (const unsigned char*)indices + start; processPrimitiveVertices() local
1355 const unsigned short *index = (const unsigned short*)indices + start; processPrimitiveVertices() local
1369 const unsigned int *index = (const unsigned int*)indices + start; processPrimitiveVertices() local
1383 const unsigned char *index = (const unsigned char*)indices; processPrimitiveVertices() local
1395 const unsigned short *index = (const unsigned short*)indices; processPrimitiveVertices() local
1407 const unsigned int *index = (const unsigned int*)indices; processPrimitiveVertices() local
1419 const unsigned char *index = (const unsigned char*)indices + 3 * start; processPrimitiveVertices() local
1433 const unsigned short *index = (const unsigned short*)indices + 3 * start; processPrimitiveVertices() local
1447 const unsigned int *index = (const unsigned int*)indices + 3 * start; processPrimitiveVertices() local
1461 const unsigned char *index = (const unsigned char*)indices + start; processPrimitiveVertices() local
1475 const unsigned short *index = (const unsigned short*)indices + start; processPrimitiveVertices() local
1489 const unsigned int *index = (const unsigned int*)indices + start; processPrimitiveVertices() local
1503 const unsigned char *index = (const unsigned char*)indices; processPrimitiveVertices() local
1515 const unsigned short *index = (const unsigned short*)indices; processPrimitiveVertices() local
1527 const unsigned int *index = (const unsigned int*)indices; processPrimitiveVertices() local
1539 unsigned int index = 4 * start / 2; processPrimitiveVertices() local
2214 int index = instruction->dst.index; loadConstants() local
2226 int index = instruction->dst.index; loadConstants() local
2238 int index = instruction->dst.index; loadConstants() local
2258 int index = instruction->dst.index; loadConstants() local
2270 int index = instruction->dst.index; loadConstants() local
2282 int index = instruction->dst.index; loadConstants() local
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-register.h23 constexpr explicit Register(int index = kInvalidIndex) : index_(index) {} in Register()
25 int index() const { return index_; } in index() function in v8::internal::interpreter::final
26 bool is_parameter() const { return index() < 0; } in is_parameter()
29 static Register FromParameterIndex(int index);
75 if (index() >= 0 && index() < Bytecodes::kShortStarCount) { in TryToShortStar()
77 static_cast<Bytecode>(static_cast<int>(Bytecode::kStar0) - index()); in TryToShortStar()
93 return index() == other.index(); in operator ==()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
H A DSegmentedGrowableMemoryByteArray.java53 * @param lowBits the number of bits to use as the initial buffer index
64 protected void internalPut(int index, byte b) { in internalPut() argument
65 int bufferIndex = this.bufferIndex(index); in internalPut()
66 int bufferOffset = this.bufferOffset(bufferIndex, index); in internalPut()
72 protected int internalPut(int index, byte[] b, int offset, int length) { in internalPut() argument
75 int bufferIndex = this.bufferIndex(index); in internalPut()
76 int bufferOffset = this.bufferOffset(bufferIndex, index); in internalPut()
80 index += copyLength; in internalPut()
88 protected int internalGet(int index) { in internalGet() argument
89 int bufferIndex = this.bufferIndex(index); in internalGet()
96 internalGet(int index, byte[] b, int offset, int length) internalGet() argument
125 bufferOffset(int bufferIndex, int index) bufferOffset() argument
136 bufferIndex(int index) bufferIndex() argument
148 buffer(int index) buffer() argument
[all...]
/third_party/skia/src/gpu/mtl/
H A DGrMtlRenderCommandEncoder.h68 void setVertexBuffer(id<MTLBuffer> buffer, NSUInteger offset, NSUInteger index) { in setVertexBuffer() argument
70 if (fCurrentVertexBuffer[index] == buffer) { in setVertexBuffer()
71 this->setVertexBufferOffset(offset, index); in setVertexBuffer()
75 if (fCurrentVertexBuffer[index] != buffer || fCurrentVertexOffset[index] != offset) { in setVertexBuffer()
78 atIndex:index]; in setVertexBuffer()
79 fCurrentVertexBuffer[index] = buffer; in setVertexBuffer()
80 fCurrentVertexOffset[index] = offset; in setVertexBuffer()
83 void setVertexBufferOffset(NSUInteger offset, NSUInteger index)
85 if (fCurrentVertexOffset[index] !
92 setFragmentBuffer(id<MTLBuffer> buffer, NSUInteger offset, NSUInteger index) setFragmentBuffer() argument
129 setFragmentTexture(id<MTLTexture> texture, NSUInteger index) setFragmentTexture() argument
[all...]
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_INPUT.c34 int valid_input_index(int f, __u32 index) in valid_input_index() argument
41 /* Search for index with VIDIOC_ENUMINPUT. Do not just in valid_input_index()
42 * check the given index with VIDIOC_ENUMINPUT because in valid_input_index()
49 input.index = i; in valid_input_index()
52 if (ret_enum == 0 && index == i) { in valid_input_index()
64 __u32 index; in test_VIDIOC_G_INPUT() local
69 memset(&index, 0xff, sizeof(index)); in test_VIDIOC_G_INPUT()
70 ret_get = ioctl(f, VIDIOC_G_INPUT, &index); in test_VIDIOC_G_INPUT()
78 CU_ASSERT(valid_input_index(f, index)); in test_VIDIOC_G_INPUT()
140 do_set_input(int f, __u32 first_wrong_input, __u32 index) do_set_input() argument
233 __u32 index; test_VIDIOC_G_INPUT_NULL() local
267 __u32 index; test_VIDIOC_S_INPUT_NULL() local
[all...]
H A Dtest_VIDIOC_OUTPUT.c32 int valid_output_index(int f, __u32 index) in valid_output_index() argument
39 /* Search for index with VIDIOC_ENUMOUTPUT. Do not just in valid_output_index()
40 * check the given index with VIDIOC_ENUMOUTPUT because in valid_output_index()
47 output.index = i; in valid_output_index()
50 if (ret_enum == 0 && index == i) { in valid_output_index()
62 __u32 index; in test_VIDIOC_G_OUTPUT() local
67 memset(&index, 0xff, sizeof(index)); in test_VIDIOC_G_OUTPUT()
68 ret_get = ioctl(f, VIDIOC_G_OUTPUT, &index); in test_VIDIOC_G_OUTPUT()
76 CU_ASSERT(valid_output_index(f, index)); in test_VIDIOC_G_OUTPUT()
140 do_set_output(int f, __u32 first_wrong_output, __u32 index) do_set_output() argument
231 __u32 index; test_VIDIOC_G_OUTPUT_NULL() local
265 __u32 index; test_VIDIOC_S_OUTPUT_NULL() local
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Dfree-list.cc93 const size_t index = BucketIndexForSize(static_cast<uint32_t>(size)); in AddReturningUnusedBounds() local
94 entry.Link(&free_list_heads_[index]); in AddReturningUnusedBounds()
95 biggest_free_list_index_ = std::max(biggest_free_list_index_, index); in AddReturningUnusedBounds()
97 free_list_tails_[index] = &entry; in AddReturningUnusedBounds()
109 for (size_t index = 0; index < free_list_tails_.size(); ++index) { in Append()
110 Entry* other_tail = other.free_list_tails_[index]; in Append()
111 Entry*& this_head = this->free_list_heads_[index]; in Append()
115 this->free_list_tails_[index] in Append()
140 size_t index = biggest_free_list_index_; Allocate() local
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader_llvm_resources.c30 * Return a value that is equal to the given i32 \p index if it lies in [0,num)
33 static LLVMValueRef si_llvm_bound_index(struct si_shader_context *ctx, LLVMValueRef index, in si_llvm_bound_index() argument
41 index = LLVMBuildAnd(builder, index, c_max, ""); in si_llvm_bound_index()
49 cc = LLVMBuildICmp(builder, LLVMIntULE, index, c_max, ""); in si_llvm_bound_index()
50 index = LLVMBuildSelect(builder, cc, index, c_max, ""); in si_llvm_bound_index()
53 return index; in si_llvm_bound_index()
92 static LLVMValueRef load_ubo(struct ac_shader_abi *abi, LLVMValueRef index) in load_ubo() argument
103 index in load_ubo()
110 load_ssbo(struct ac_shader_abi *abi, LLVMValueRef index, bool write, bool non_uniform) load_ssbo() argument
180 si_load_image_desc(struct si_shader_context *ctx, LLVMValueRef list, LLVMValueRef index, enum ac_descriptor_type desc_type, bool uses_store, bool bindless) si_load_image_desc() argument
208 si_load_sampler_desc(struct si_shader_context *ctx, LLVMValueRef list, LLVMValueRef index, enum ac_descriptor_type type) si_load_sampler_desc() argument
293 LLVMValueRef index = LLVMConstInt(ctx->ac.i32, const_index, false); si_nir_load_sampler_desc() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-priority-queue.hh90 static constexpr unsigned parent (unsigned index) in parent()
92 return (index - 1) / 2; in parent()
95 static constexpr unsigned left_child (unsigned index) in left_child()
97 return 2 * index + 1; in left_child()
100 static constexpr unsigned right_child (unsigned index) in right_child()
102 return 2 * index + 2; in right_child()
105 void bubble_down (unsigned index) in bubble_down()
107 unsigned left = left_child (index); in bubble_down()
108 unsigned right = right_child (index); in bubble_down()
116 if (heap[index] in bubble_down()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/flags/
H A Dflag_benchmark.cc104 #define REPLICATE_0(A, T, name, index) A(T, name, index)
105 #define REPLICATE_1(A, T, name, index) \
106 REPLICATE_0(A, T, name, index##0) REPLICATE_0(A, T, name, index##1)
107 #define REPLICATE_2(A, T, name, index) \
108 REPLICATE_1(A, T, name, index##0) REPLICATE_1(A, T, name, index##1)
109 #define REPLICATE_3(A, T, name, index) \
110 REPLICATE_2(A, T, name, index##
[all...]
/third_party/node/deps/v8/src/deoptimizer/
H A Ddeoptimized-frame-info.h30 Handle<Object> GetParameter(int index) { in GetParameter() argument
31 DCHECK(0 <= index && index < parameters_count()); in GetParameter()
32 return parameters_[index]; in GetParameter()
36 Handle<Object> GetExpression(int index) { in GetExpression() argument
37 DCHECK(0 <= index && index < expression_count()); in GetExpression()
38 return expression_stack_[index]; in GetExpression()
49 void SetParameter(int index, Handle<Object> obj) { in SetParameter() argument
50 DCHECK(0 <= index in SetParameter()
55 SetExpression(int index, Handle<Object> obj) SetExpression() argument
[all...]
/third_party/node/deps/v8/src/objects/
H A Dproperty-array-inl.h29 Object PropertyArray::get(int index) const { in get()
31 return get(cage_base, index); in get()
34 Object PropertyArray::get(PtrComprCageBase cage_base, int index) const { in get()
35 DCHECK_LT(static_cast<unsigned>(index), in get()
38 OffsetOfElementAt(index)); in get()
41 Object PropertyArray::get(int index, SeqCstAccessTag tag) const { in get() argument
43 return get(cage_base, index, tag); in get()
46 Object PropertyArray::get(PtrComprCageBase cage_base, int index, in get() argument
48 DCHECK_LT(static_cast<unsigned>(index), in get()
51 OffsetOfElementAt(index)); in get()
54 set(int index, Object value) set() argument
63 set(int index, Object value, WriteBarrierMode mode) set() argument
71 set(int index, Object value, SeqCstAccessTag tag) set() argument
84 Swap(int index, Object value, SeqCstAccessTag tag) Swap() argument
89 Swap(PtrComprCageBase cage_base, int index, Object value, SeqCstAccessTag tag) Swap() argument
[all...]
/test/xts/acts/multimedia/av_codec/demuxer/src/
H A Dproc_test.cpp167 for (int32_t index = 0; index < g_trackCount; index++) { in HWTEST_F()
168 ASSERT_EQ(AV_ERR_OK, OH_AVDemuxer_SelectTrackByID(demuxer, index)); in HWTEST_F()
175 for (int32_t index = 0; index < g_trackCount; index++) { in HWTEST_F()
176 trackFormat = OH_AVSource_GetTrackFormat(source, index); in HWTEST_F()
182 ASSERT_EQ(AV_ERR_OK, OH_AVDemuxer_ReadSample(demuxer, index, memory, &attr)); in HWTEST_F()
186 SetAudioValue(attr, audioIsEnd, audioFrame[index in HWTEST_F()
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_containers.cc82 typedef const void* (*GetByIndexMethod)(PyContainer* self, int index);
87 typedef const void* (*GetByNumberMethod)(PyContainer* self, int index);
99 // Retrieve item by index (usually the order of declaration in the proto file)
100 // Used by sequences, but also iterators. 0 <= index < Count().
120 // Retrieve the index of an item for the container type.
152 // The current index in the iterator.
153 int index; member
227 // Returns the key of the object at the given index.
229 static PyObject* _NewKey_ByIndex(PyContainer* self, Py_ssize_t index) { in _NewKey_ByIndex() argument
230 const void* item = self->container_def->get_by_index_fn(self, index); in _NewKey_ByIndex()
256 _NewObj_ByIndex(PyContainer* self, Py_ssize_t index) _NewObj_ByIndex() argument
604 GetItem(PyContainer* self, Py_ssize_t index) GetItem() argument
618 Py_ssize_t index; SeqSubscript() local
649 int index = self->container_def->get_item_index_fn(descriptor_ptr); Find() local
853 int index = self->index; Iterator_Next() local
978 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1047 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1099 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1162 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1222 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1274 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1332 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1407 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1461 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1523 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1571 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1619 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1667 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1711 GetByIndex(PyContainer* self, int index) GetByIndex() argument
1747 GetByIndex(PyContainer* self, int index) GetByIndex() argument
[all...]
/third_party/skia/tests/
H A DPathOpsTestCommon.cpp59 for (double index = 0; index < parts; ++index) { in addTs()
60 double newT = start + (index / parts) * (end - start); in addTs()
186 for (int index = 0; index < quads.count(); ++index) {
188 quads[index][1].asSkPoint(),
189 quads[index][2].asSkPoint()
227 for (int index in CubicPathToSimple()
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationBuilder.java127 int index = findOrInsertNodeForCEs(strength); in addReset()
129 long node = nodes.elementAti(index); in addReset()
130 // If the index is for a "weaker" node, in addReset()
133 index = previousIndexFromNode(node); in addReset()
134 node = nodes.elementAti(index); in addReset()
137 // Find or insert a node whose index we will put into a temporary CE. in addReset()
140 index = previousIndexFromNode(node); in addReset()
142 // root primary node (has no previous index) in addReset()
159 index = findOrInsertNodeForPrimary(p); in addReset()
163 node = nodes.elementAti(index); in addReset()
237 getWeight16Before(int index, long node, int level) getWeight16Before() argument
626 findOrInsertWeakNode(int index, int weight16, int level) findOrInsertWeakNode() argument
697 insertTailoredNodeAfter(int index, int strength) insertTailoredNodeAfter() argument
724 insertNodeBetween(int index, int nextIndex, long node) insertNodeBetween() argument
750 findCommonNode(int index, int strength) findCommonNode() argument
1371 tempCEFromIndexAndStrength(int index, int strength) tempCEFromIndexAndStrength() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/coll/
H A DCollationBuilder.java131 int index = findOrInsertNodeForCEs(strength); in addReset()
133 long node = nodes.elementAti(index); in addReset()
134 // If the index is for a "weaker" node, in addReset()
137 index = previousIndexFromNode(node); in addReset()
138 node = nodes.elementAti(index); in addReset()
141 // Find or insert a node whose index we will put into a temporary CE. in addReset()
144 index = previousIndexFromNode(node); in addReset()
146 // root primary node (has no previous index) in addReset()
163 index = findOrInsertNodeForPrimary(p); in addReset()
167 node = nodes.elementAti(index); in addReset()
241 getWeight16Before(int index, long node, int level) getWeight16Before() argument
630 findOrInsertWeakNode(int index, int weight16, int level) findOrInsertWeakNode() argument
701 insertTailoredNodeAfter(int index, int strength) insertTailoredNodeAfter() argument
728 insertNodeBetween(int index, int nextIndex, long node) insertNodeBetween() argument
754 findCommonNode(int index, int strength) findCommonNode() argument
1375 tempCEFromIndexAndStrength(int index, int strength) tempCEFromIndexAndStrength() argument
[all...]
/third_party/lame/misc/
H A Dabx.c554 void Message ( const char* s, size_t index, long freq, size_t start, size_t stop ) in Message() argument
556 unsigned long norm_index = 100lu * index / freq; in Message()
572 size_t calc_true_index ( size_t index, size_t start, size_t stop ) in calc_true_index() argument
576 while ( index - start < DMA_SAMPLES ) in calc_true_index()
577 index += stop - start; in calc_true_index()
578 return index - DMA_SAMPLES; in calc_true_index()
592 size_t index = start; /* derzeitiger Offset auf den Audiostr�men */ in testing() local
644 start = calc_true_index ( index, start, stop); in testing()
647 stop = calc_true_index ( index, start, stop); in testing()
654 index in testing()
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DCMapFormat4.java99 private static int startCode(ReadableFontData data, int segCount, int index) { in startCode() argument
101 data.readUShort(startCodeOffset(segCount) + index * FontData.DataSize.USHORT.size()); in startCode()
112 private static int endCode(ReadableFontData data, int segCount, int index) { in endCode() argument
114 data.readUShort(Offset.format4EndCount.offset + index * FontData.DataSize.USHORT.size()); in endCode()
118 private static int idDelta(ReadableFontData data, int segCount, int index) { in idDelta() argument
120 data.readShort(idDeltaOffset(segCount) + index * FontData.DataSize.SHORT.size()); in idDelta()
130 private static int idRangeOffset(ReadableFontData data, int segCount, int index) { in idRangeOffset() argument
132 data.readUShort(idRangeOffsetOffset(segCount) + index * FontData.DataSize.USHORT.size()); in idRangeOffset()
200 private int glyphIdArray(int index) { in glyphIdArray() argument
202 this.glyphIdArrayOffset + index * FontDat in glyphIdArray()
[all...]
/third_party/skia/src/pathops/
H A DSkOpBuilder.cpp20 for (int index = 1; index < verbCount; ++index) { in one_contour()
21 if (verbs[index] == SkPath::kMove_Verb) { in one_contour()
133 for (int index = 0; index < count; ++index) { in resolve()
134 SkPath* test = &fPathRefs[index]; in resolve()
135 if (kUnion_SkPathOp != fOps[index] || test->isInverseFillType()) { in resolve()
155 for (int inner = 0; inner < index; in resolve()
[all...]
H A DSkOpCubicHull.cpp9 static bool rotate(const SkDCubic& cubic, int zero, int index, SkDCubic& rotPath) { in rotate() argument
10 double dy = cubic[index].fY - cubic[zero].fY; in rotate()
11 double dx = cubic[index].fX - cubic[zero].fX; in rotate()
18 rotPath[index].fY = cubic[zero].fY; in rotate()
19 int mask = other_two(index, zero); in rotate()
20 int side1 = index ^ mask; in rotate()
56 size_t index; in convexHull() local
59 for (index = 1; index < 4; ++index) { in convexHull()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_btree_navigator.cc68 size_t index = index_[0]; in Skip() local
70 CordRep* edge = node->Edge(index); in Skip()
79 while (++index == node->end()) { in Skip()
82 index = index_[height]; in Skip()
84 edge = node->Edge(index); in Skip()
91 index_[height] = index; in Skip()
93 index = node->begin(); in Skip()
94 edge = node->Edge(index); in Skip()
97 ++index; in Skip()
98 assert(index ! in Skip()
109 size_t index = index_[0]; Read() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.cpp51 string getProgramFileName (deUint32 index) in getProgramFileName() argument
53 return de::toString(tcu::toHex(index)) + ".spv"; in getProgramFileName()
56 string getProgramPath (const std::string& dirName, deUint32 index) in getProgramPath() argument
58 return de::FilePath::join(dirName, getProgramFileName(index)).getPath(); in getProgramPath()
93 deUint32 index = ~0u; in getProgramIndexFromName() local
97 str >> index; in getProgramIndexFromName() local
99 DE_ASSERT(getProgramFileName(index) == name); in getProgramIndexFromName()
101 return index; in getProgramIndexFromName()
106 return de::FilePath::join(dirName, "index.bin").getPath(); in getIndexPath()
127 void writeBinary (const std::string& dstDir, deUint32 index, cons argument
180 findBinaryIndex(BinaryIndexAccess* index, const ProgramIdentifier& id) findBinaryIndex() argument
222 deUint32 index; global() member
251 addToSparseIndex(SparseIndexNode* group, const deUint32* words, size_t numWords, deUint32 index) addToSparseIndex() argument
326 addAndCountNodes(BinaryIndexNode* index, deUint32 baseOffset, const SparseIndexNode* group) addAndCountNodes() argument
409 insert(const ProgramBinary* binary, deUint32 index) insert() argument
443 const deUint32 index = getProgramIndexFromName(baseName); initFromPath() local
456 deUint32 index = indexPtr ? *indexPtr : ~0u; addProgram() local
475 const deUint32 index = (deUint32)m_binaries.size(); getNextSlot() local
483 addBinary(deUint32 index, const ProgramBinary& binary) addBinary() argument
544 std::vector<BinaryIndexNode> index; writeToPath() local
[all...]

Completed in 17 milliseconds

12345678910>>...347