Home
last modified time | relevance | path

Searched refs:index (Results 1 – 25 of 8967) sorted by relevance

12345678910>>...359

/external/apache-http/src/org/apache/commons/codec/language/
DDoubleMetaphone.java97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone() local
101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone()
102 switch (value.charAt(index)) { in doubleMetaphone()
109 index = handleAEIOUY(value, result, index); in doubleMetaphone()
113 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1; in doubleMetaphone()
118 index++; in doubleMetaphone()
121 index = handleC(value, result, index); in doubleMetaphone()
124 index = handleD(value, result, index); in doubleMetaphone()
128 index = charAt(value, index + 1) == 'F' ? index + 2 : index + 1; in doubleMetaphone()
131 index = handleG(value, result, index, slavoGermanic); in doubleMetaphone()
[all …]
/external/proguard/src/proguard/classfile/attribute/visitor/
DMultiAttributeVisitor.java81 for (int index = 0; index < attributeVisitors.length; index++) in visitUnknownAttribute()
83 attributeVisitors[index].visitUnknownAttribute(clazz, unknownAttribute); in visitUnknownAttribute()
90 for (int index = 0; index < attributeVisitors.length; index++) in visitBootstrapMethodsAttribute()
92 … attributeVisitors[index].visitBootstrapMethodsAttribute(clazz, bootstrapMethodsAttribute); in visitBootstrapMethodsAttribute()
99 for (int index = 0; index < attributeVisitors.length; index++) in visitSourceFileAttribute()
101 attributeVisitors[index].visitSourceFileAttribute(clazz, sourceFileAttribute); in visitSourceFileAttribute()
108 for (int index = 0; index < attributeVisitors.length; index++) in visitSourceDirAttribute()
110 attributeVisitors[index].visitSourceDirAttribute(clazz, sourceDirAttribute); in visitSourceDirAttribute()
117 for (int index = 0; index < attributeVisitors.length; index++) in visitInnerClassesAttribute()
119 attributeVisitors[index].visitInnerClassesAttribute(clazz, innerClassesAttribute); in visitInnerClassesAttribute()
[all …]
/external/skqp/samplecode/
Dvertexdump.cpp9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { in setup_vertexbug() argument
44 index[0] = 0; index[1] = 5; index[2] = 1; in setup_vertexbug()
45 index[3] = 0; index[4] = 4; index[5] = 5; in setup_vertexbug()
47 index[6] = 1; index[7] = 6; index[8] = 2; in setup_vertexbug()
49 index[6] = 6; index[7] = 2; index[8] = 1; in setup_vertexbug()
51 index[9] = 1; index[10] = 5; index[11] = 6; in setup_vertexbug()
52 index[12] = 2; in setup_vertexbug()
53 index[13] = 7; in setup_vertexbug()
54 index[14] = 3; in setup_vertexbug()
[all …]
/external/skia/samplecode/
Dvertexdump.cpp9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { in setup_vertexbug() argument
44 index[0] = 0; index[1] = 5; index[2] = 1; in setup_vertexbug()
45 index[3] = 0; index[4] = 4; index[5] = 5; in setup_vertexbug()
47 index[6] = 1; index[7] = 6; index[8] = 2; in setup_vertexbug()
49 index[6] = 6; index[7] = 2; index[8] = 1; in setup_vertexbug()
51 index[9] = 1; index[10] = 5; index[11] = 6; in setup_vertexbug()
52 index[12] = 2; in setup_vertexbug()
53 index[13] = 7; in setup_vertexbug()
54 index[14] = 3; in setup_vertexbug()
[all …]
/external/clang/test/Analysis/
Drange_casts.c8 unsigned index = -1; in f1() local
9 if (index < foo) index = foo; in f1()
10 if (index + 1 == 0) // because of foo range, index is in range [0; UINT_MAX] in f1()
18 int index = -1; in f2() local
19 if (index < foo) index = foo; // index equals ULONG_MAX in f2()
20 if (index + 1 == 0) in f2()
28 unsigned index = -1; in f3() local
29 if (index < foo) index = foo; in f3()
30 if (index + 1 == 0) in f3()
38 int index = -1; in f4() local
[all …]
/external/swiftshader/src/Device/
DContext.cpp154 void Context::setBlendState(int index, BlendState state) in setBlendState() argument
156 ASSERT((index >= 0) && (index < RENDERTARGETS)); in setBlendState()
158 blendState[index] = state; in setBlendState()
161 BlendState Context::getBlendState(int index) const in getBlendState()
163 ASSERT((index >= 0) && (index < RENDERTARGETS)); in getBlendState()
166 activeBlendState.alphaBlendEnable = alphaBlendActive(index); in getBlendState()
167 activeBlendState.sourceBlendFactor = sourceBlendFactor(index); in getBlendState()
168 activeBlendState.destBlendFactor = destBlendFactor(index); in getBlendState()
169 activeBlendState.blendOperation = blendOperation(index); in getBlendState()
170 activeBlendState.sourceBlendFactorAlpha = sourceBlendFactorAlpha(index); in getBlendState()
[all …]
/external/swiftshader/src/Shader/
DPixelShader.cpp234 int sampler = inst->dst.index; in analyzeInterpolants()
246 int index = inst->dst.index + 2; in analyzeInterpolants() local
262 interpolant[index][0] = true; in analyzeInterpolants()
263 interpolant[index][1] = true; in analyzeInterpolants()
264 interpolant[index][2] = true; in analyzeInterpolants()
269 interpolant[index][0] = true; in analyzeInterpolants()
270 interpolant[index][1] = true; in analyzeInterpolants()
271 interpolant[index][2] = true; in analyzeInterpolants()
275 interpolant[index][0] = true; in analyzeInterpolants()
276 interpolant[index][1] = true; in analyzeInterpolants()
[all …]
/external/skia/src/pathops/
DSkIntersections.cpp14 for (int index = 0; index < fUsed; ++index) { in closestTo() local
15 if (!between(rangeStart, fT[0][index], rangeEnd)) { in closestTo()
18 const SkDPoint& iPt = fPt[index]; in closestTo()
22 closest = index; in closestTo()
29 for (int index = 0; index < fUsed; ++index) { in flip() local
30 fT[1][index] = 1 - fT[1][index]; in flip()
40 int index; in insert() local
41 for (index = 0; index < fUsed; ++index) { in insert()
42 double oldOne = fT[0][index]; in insert()
43 double oldTwo = fT[1][index]; in insert()
[all …]
/external/skqp/src/pathops/
DSkIntersections.cpp14 for (int index = 0; index < fUsed; ++index) { in closestTo() local
15 if (!between(rangeStart, fT[0][index], rangeEnd)) { in closestTo()
18 const SkDPoint& iPt = fPt[index]; in closestTo()
22 closest = index; in closestTo()
29 for (int index = 0; index < fUsed; ++index) { in flip() local
30 fT[1][index] = 1 - fT[1][index]; in flip()
40 int index; in insert() local
41 for (index = 0; index < fUsed; ++index) { in insert()
42 double oldOne = fT[0][index]; in insert()
43 double oldTwo = fT[1][index]; in insert()
[all …]
/external/skia/src/utils/
DSkCharToGlyphCache.cpp40 int index; in find_simple() local
41 for (index = 0;; ++index) { in find_simple()
42 if (value <= base[index]) { in find_simple()
43 if (value < base[index]) { in find_simple()
44 index = ~index; // not found in find_simple()
49 return index; in find_simple()
55 int index; in find_with_slope() local
57 index = 1; in find_with_slope()
58 if (value < base[index]) { in find_with_slope()
59 index = ~index; in find_with_slope()
[all …]
/external/proguard/src/proguard/util/
DArrayUtil.java40 for (int index = 0; index < size; index++) in equal()
42 if (array1[index] != array2[index]) in equal()
61 for (int index = 0; index < size; index++) in equal()
63 if (array1[index] != array2[index]) in equal()
82 for (int index = 0; index < size; index++) in equal()
84 if (array1[index] != array2[index]) in equal()
103 for (int index = 0; index < size; index++) in equal()
105 if (!array1[index].equals(array2[index])) in equal()
155 for (int index = 0; index < size; index++) in hashCode()
157 hashCode ^= array[index]; in hashCode()
[all …]
/external/mesa3d/src/mesa/main/
Dapi_arrayelt.c96 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) in VertexAttrib1NbvNV() argument
98 CALL_VertexAttrib1fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]))); in VertexAttrib1NbvNV()
102 VertexAttrib1bvNV(GLuint index, const GLbyte *v) in VertexAttrib1bvNV() argument
104 CALL_VertexAttrib1fNV(get_dispatch(), (index, (GLfloat)v[0])); in VertexAttrib1bvNV()
108 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) in VertexAttrib2NbvNV() argument
110 CALL_VertexAttrib2fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1]))); in VertexAttrib2NbvNV()
114 VertexAttrib2bvNV(GLuint index, const GLbyte *v) in VertexAttrib2bvNV() argument
116 CALL_VertexAttrib2fNV(get_dispatch(), (index, (GLfloat)v[0], (GLfloat)v[1])); in VertexAttrib2bvNV()
120 VertexAttrib3NbvNV(GLuint index, const GLbyte *v) in VertexAttrib3NbvNV() argument
122 CALL_VertexAttrib3fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), in VertexAttrib3NbvNV()
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DAttributesImpl.java113 public String getURI (int index) in getURI() argument
115 if (index >= 0 && index < length) { in getURI()
116 return data[index*5]; in getURI()
131 public String getLocalName (int index) in getLocalName() argument
133 if (index >= 0 && index < length) { in getLocalName()
134 return data[index*5+1]; in getLocalName()
149 public String getQName (int index) in getQName() argument
151 if (index >= 0 && index < length) { in getQName()
152 return data[index*5+2]; in getQName()
167 public String getType (int index) in getType() argument
[all …]
/external/u-boot/drivers/ddr/marvell/a38x/
Dddr3_training_db.c17 static inline u32 pattern_table_get_killer_word16(u8 dqs, u8 index);
18 static inline u32 pattern_table_get_sso_word(u8 sso, u8 index);
19 static inline u32 pattern_table_get_vref_word(u8 index);
20 static inline u32 pattern_table_get_vref_word16(u8 index);
21 static inline u32 pattern_table_get_sso_full_xtalk_word(u8 bit, u8 index);
22 static inline u32 pattern_table_get_sso_full_xtalk_word16(u8 bit, u8 index);
23 static inline u32 pattern_table_get_sso_xtalk_free_word(u8 bit, u8 index);
24 static inline u32 pattern_table_get_sso_xtalk_free_word16(u8 bit, u8 index);
25 static inline u32 pattern_table_get_isi_word(u8 index);
26 static inline u32 pattern_table_get_isi_word16(u8 index);
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
DTokenIndex.java10 int index; field in TokenIndex
15 this.index = 0; in caseTData()
21 this.index = 1; in caseTComment()
27 this.index = 2; in caseTVar()
33 this.index = 3; in caseTLvar()
39 this.index = 4; in caseTEvar()
45 this.index = 5; in caseTUvar()
51 this.index = 6; in caseTSet()
57 this.index = 7; in caseTIf()
63 this.index = 8; in caseTElseIf()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessagePattern.java411 modified.insert(part.index, (char)part.value); in autoQuoteApostropheDeep()
463 return parts.get(partIndex).index; in getPatternIndex()
474 int index=part.index; in getSubstring() local
475 return msg.substring(index, index+part.length); in getSubstring()
486 return part.length == s.length() && msg.regionMatches(part.index, s, 0, part.length); in partSubstringMatches()
557 index=i; in Part()
577 return index; in getIndex()
597 return index+length; in getLimit()
754 return type.name()+"("+valueString+")@"+index; in toString()
773 index==o.index && in equals()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessagePattern.java388 modified.insert(part.index, (char)part.value); in autoQuoteApostropheDeep()
436 return parts.get(partIndex).index; in getPatternIndex()
446 int index=part.index; in getSubstring() local
447 return msg.substring(index, index+part.length); in getSubstring()
457 return part.length == s.length() && msg.regionMatches(part.index, s, 0, part.length); in partSubstringMatches()
523 index=i; in Part()
541 return index; in getIndex()
559 return index+length; in getLimit()
697 return type.name()+"("+valueString+")@"+index; in toString()
715 index==o.index && in equals()
[all …]
/external/proguard/src/proguard/evaluation/
DVariables.java122 for (int index = 0; index < size; index++) in generalize()
124 Value thisValue = this.values[index]; in generalize()
125 Value otherValue = other.values[index]; in generalize()
140 this.values[index] = newValue; in generalize()
146 this.values[index] = null; in generalize()
150 other.values[index] = null; in generalize()
171 public Value getValue(int index) in getValue() argument
173 if (index < 0 || in getValue()
174 index >= size) in getValue()
176 … throw new IndexOutOfBoundsException("Variable index ["+index+"] out of bounds ["+size+"]"); in getValue()
[all …]
/external/llvm/utils/TableGen/
DX86DisassemblerTables.cpp392 for (unsigned index = 0; index < 256; ++index) { in getDecisionType() local
393 if (decision.instructionIDs[index] != decision.instructionIDs[0]) in getDecisionType()
396 if (((index & 0xc0) == 0xc0) && in getDecisionType()
397 (decision.instructionIDs[index] != decision.instructionIDs[0xc0])) in getDecisionType()
400 if (((index & 0xc0) != 0xc0) && in getDecisionType()
401 (decision.instructionIDs[index] != decision.instructionIDs[0x00])) in getDecisionType()
404 if (((index & 0xc0) == 0xc0) && in getDecisionType()
405 (decision.instructionIDs[index] != decision.instructionIDs[index&0xf8])) in getDecisionType()
408 if (((index & 0xc0) != 0xc0) && in getDecisionType()
409 (decision.instructionIDs[index] != decision.instructionIDs[index&0x38])) in getDecisionType()
[all …]
/external/skqp/src/core/
DSkVertState.cpp11 int index = state->fCurrIndex; in Triangles() local
12 if (index + 3 > state->fCount) { in Triangles()
15 state->f0 = index + 0; in Triangles()
16 state->f1 = index + 1; in Triangles()
17 state->f2 = index + 2; in Triangles()
18 state->fCurrIndex = index + 3; in Triangles()
24 int index = state->fCurrIndex; in TrianglesX() local
25 if (index + 3 > state->fCount) { in TrianglesX()
28 state->f0 = indices[index + 0]; in TrianglesX()
29 state->f1 = indices[index + 1]; in TrianglesX()
[all …]
/external/skia/src/core/
DSkVertState.cpp11 int index = state->fCurrIndex; in Triangles() local
12 if (index + 3 > state->fCount) { in Triangles()
15 state->f0 = index + 0; in Triangles()
16 state->f1 = index + 1; in Triangles()
17 state->f2 = index + 2; in Triangles()
18 state->fCurrIndex = index + 3; in Triangles()
24 int index = state->fCurrIndex; in TrianglesX() local
25 if (index + 3 > state->fCount) { in TrianglesX()
28 state->f0 = indices[index + 0]; in TrianglesX()
29 state->f1 = indices[index + 1]; in TrianglesX()
[all …]
/external/v8/src/utils/
Didentity-map.cc53 for (int index = start; index < capacity_; index++) { in ScanKeysFor() local
54 if (keys_[index] == address) return index; // Found. in ScanKeysFor()
55 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
57 for (int index = 0; index < start; index++) { in ScanKeysFor() local
58 if (keys_[index] == address) return index; // Found. in ScanKeysFor()
59 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
78 int index = start; in InsertKey() local
80 if (keys_[index] == address) return {index, true}; // Found. in InsertKey()
81 if (keys_[index] == not_mapped) { // Free entry. in InsertKey()
84 keys_[index] = address; in InsertKey()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DOpenIntToDoubleHashMap.java181 int index = hash & mask; in get() local
182 if (containsKey(key, index)) { in get()
183 return values[index]; in get()
186 if (states[index] == FREE) { in get()
190 int j = index; in get()
191 for (int perturb = perturb(hash); states[index] != FREE; perturb >>= PERTURB_SHIFT) { in get()
193 index = j & mask; in get()
194 if (containsKey(key, index)) { in get()
195 return values[index]; in get()
211 int index = hash & mask; in containsKey() local
[all …]
/external/v8/src/objects/
Dfixed-array-inl.h72 Object FixedArray::get(int index) const { in get() argument
74 return get(isolate, index); in get()
77 Object FixedArray::get(IsolateRoot isolate, int index) const { in get() argument
78 DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length())); in get()
80 OffsetOfElementAt(index)); in get()
83 Handle<Object> FixedArray::get(FixedArray array, int index, Isolate* isolate) { in get() argument
84 return handle(array.get(isolate, index), isolate); in get()
87 bool FixedArray::is_the_hole(Isolate* isolate, int index) { in is_the_hole() argument
88 return get(isolate, index).IsTheHole(isolate); in is_the_hole()
91 void FixedArray::set(int index, Smi value) { in set() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/SVE/
Dindex.s13 index z0.b, #0, #0 label
19 index z31.b, #-1, #-1 label
25 index z0.h, #0, #0 label
31 index z31.h, #-1, #-1 label
37 index z0.s, #0, #0 label
43 index z31.s, #-1, #-1 label
49 index z0.d, #0, #0 label
55 index z31.d, #-1, #-1 label
64 index z31.b, #-1, wzr label
70 index z23.b, #13, w8 label
[all …]

12345678910>>...359