Searched refs:index (Results 1 - 25 of 6826) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Drange_casts.c8 unsigned index = -1; local
9 if (index < foo) index = foo;
10 if (index + 1 == 0) // because of foo range, index is in range [0; UINT_MAX]
18 int index = -1; local
19 if (index < foo) index = foo; // index equals ULONG_MAX
20 if (index
28 unsigned index = -1; local
38 int index = -1; local
48 unsigned index = -1; local
58 unsigned index = -1; local
68 unsigned index = -1; local
78 unsigned index = -1; local
88 unsigned index = -1; local
98 unsigned index = -1; local
108 unsigned index = -1; local
118 unsigned index = -1; local
128 unsigned short index = -1; local
138 unsigned index = -1; local
149 unsigned index = -1; local
[all...]
/external/skia/samplecode/
H A Dvertexdump.cpp9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { argument
44 index[0] = 0; index[1] = 5; index[2] = 1;
45 index[3] = 0; index[4] = 4; index[5] = 5;
47 index[6] = 1; index[
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dindex_conv_dec.c22 int16_t *index /* (i/o) Codebook indexes */
27 /* Readjust the second and third codebook index for the first 40 sample
30 if ((index[k]>=44)&&(index[k]<108)) {
31 index[k]+=64;
32 } else if ((index[k]>=108)&&(index[k]<128)) {
33 index[k]+=128;
H A Dindex_conv_enc.c25 int16_t *index /* (i/o) Codebook indexes */
30 /* Readjust the second and third codebook index so that it is
34 if ((index[k]>=108)&&(index[k]<172)) {
35 index[k]-=64;
36 } else if (index[k]>=236) {
37 index[k]-=128;
H A Dindex_conv_dec.h25 int16_t *index /* (i/o) Codebook indexes */
H A Dindex_conv_enc.h29 int16_t *index /* (i/o) Codebook indexes */
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_pageobjectlist.cpp12 CPDF_PageObject* CPDF_PageObjectList::GetPageObjectByIndex(int index) { argument
13 if (index < 0 || index >= pdfium::CollectionSize<int>(*this))
15 return (*this)[index].get();
/external/v8/src/
H A Dlookup-cache.cc13 for (int index = 0; index < kLength; index++) keys_[index].source = NULL;
/external/aac/libSBRdec/src/
H A Dhuff_dec.cpp96 The table entries are interpreted either as index to the next entry
108 SCHAR index = 0; local
111 while (index >= 0) {
113 index = h[index][bit];
116 value = index+64; /* Add offset */
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java23 * Reads an unsigned 16bit integer at the index.
25 public static int readU16bit(byte[] code, int index) { argument
26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff);
30 * Reads a signed 16bit integer at the index.
32 public static int readS16bit(byte[] code, int index) { argument
33 return (code[index] << 8) | (code[index + 1] & 0xff);
37 * Writes a 16bit integer at the index.
39 public static void write16bit(int value, byte[] code, int index) { argument
47 read32bit(byte[] code, int index) argument
55 write32bit(int value, byte[] code, int index) argument
[all...]
/external/libunwind/src/unwind/
H A DSetGR.c32 _Unwind_SetGR (struct _Unwind_Context *context, int index, argument
36 index = dwarf_to_unw_regnum(index);
38 unw_set_reg (&context->cursor, index, new_value);
40 if (index >= UNW_IA64_GR && index <= UNW_IA64_GR + 127)
42 unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DOIDTokenizer.java12 private int index; field in class:OIDTokenizer
23 this.index = 0;
33 return (index != -1);
43 if (index == -1)
49 int end = oid.indexOf('.', index);
53 token = oid.substring(index);
54 index = -1;
58 token = oid.substring(index, end);
60 index = end + 1;
/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c17 int index = 1; local
20 static int index; variable
23 return index << 2;
/external/proguard/src/proguard/obfuscate/
H A DNumericNameFactory.java31 private int index; field in class:NumericNameFactory
38 index = 0;
44 return Integer.toString(++index);
/external/skia/tests/
H A DPathOpsThreadedCommon.cpp13 for (int index = 0; index < fRunnables.count(); index++) {
14 delete fRunnables[index];
H A DPathOpsTypesTest.cpp17 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
/external/clang/test/CodeGen/
H A Davx512pf-builtins.c8 void test_mm512_mask_prefetch_i32gather_pd(__m256i index, __mmask8 mask, void const *addr, int hint) { argument
11 return _mm512_mask_prefetch_i32gather_pd(index, mask, addr, 2, 1);
14 void test_mm512_prefetch_i32gather_pd(__m256i index, void const *addr, int hint) { argument
17 return _mm512_prefetch_i32gather_pd(index, addr, 2, 1);
20 void test_mm512_mask_prefetch_i32gather_ps(__m512i index, __mmask16 mask, void const *addr, int hint) { argument
23 return _mm512_mask_prefetch_i32gather_ps(index, mask, addr, 2, 1);
26 void test_mm512_prefetch_i32gather_ps(__m512i index, void const *addr, int hint) { argument
29 return _mm512_prefetch_i32gather_ps(index, addr, 2, 1);
32 void test_mm512_mask_prefetch_i64gather_pd(__m512i index, __mmask8 mask, void const *addr, int hint) { argument
35 return _mm512_mask_prefetch_i64gather_pd(index, mas
38 test_mm512_prefetch_i64gather_pd(__m512i index, void const *addr, int hint) argument
44 test_mm512_mask_prefetch_i64gather_ps(__m512i index, __mmask8 mask, void const *addr, int hint) argument
50 test_mm512_prefetch_i64gather_ps(__m512i index, void const *addr, int hint) argument
56 test_mm512_prefetch_i32scatter_pd(void *addr, __m256i index) argument
62 test_mm512_mask_prefetch_i32scatter_pd(void *addr, __mmask8 mask, __m256i index) argument
68 test_mm512_prefetch_i32scatter_ps(void *addr, __m512i index) argument
74 test_mm512_mask_prefetch_i32scatter_ps(void *addr, __mmask16 mask, __m512i index) argument
80 test_mm512_prefetch_i64scatter_pd(void *addr, __m512i index) argument
86 test_mm512_mask_prefetch_i64scatter_pd(void *addr, __mmask16 mask, __m512i index) argument
92 test_mm512_prefetch_i64scatter_ps(void *addr, __m512i index) argument
98 test_mm512_mask_prefetch_i64scatter_ps(void *addr, __mmask16 mask, __m512i index) argument
[all...]
/external/emma/core/java12/com/vladium/jcd/compiler/
H A DCodeGen.java26 public static void load_local_object_var (final ByteArrayOStream out, final int index) argument
28 if (index <= 3)
30 out.write (_aload_0 + index); // aload_n
32 else if (index <= 0xFF)
35 index); // indexbyte
41 index >>> 8, // indexbyte1
42 index); // indexbyte2
46 public static void store_local_object_var (final ByteArrayOStream out, final int index) argument
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_
106 push_constant_index(final ByteArrayOStream out, final int index) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DMultiAttributeVisitor.java81 for (int index = 0; index < attributeVisitors.length; index++)
83 attributeVisitors[index].visitUnknownAttribute(clazz, unknownAttribute);
90 for (int index = 0; index < attributeVisitors.length; index++)
92 attributeVisitors[index].visitBootstrapMethodsAttribute(clazz, bootstrapMethodsAttribute);
99 for (int index = 0; index < attributeVisitor
[all...]
/external/skia/src/core/
H A DSkVertState.cpp11 int index = state->fCurrIndex; local
12 if (index + 3 > state->fCount) {
15 state->f0 = index + 0;
16 state->f1 = index + 1;
17 state->f2 = index + 2;
18 state->fCurrIndex = index + 3;
24 int index = state->fCurrIndex; local
25 if (index + 3 > state->fCount) {
28 state->f0 = indices[index + 0];
29 state->f1 = indices[index
36 int index = state->fCurrIndex; local
54 int index = state->fCurrIndex; local
71 int index = state->fCurrIndex; local
84 int index = state->fCurrIndex; local
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java97 int index = isSilentStart(value) ? 1 : 0;
101 while (!result.isComplete() && index <= value.length() - 1) {
102 switch (value.charAt(index)) {
109 index = handleAEIOUY(value, result, index);
113 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1;
118 index
274 handleAEIOUY(String value, DoubleMetaphoneResult result, int index) argument
285 handleC(String value, DoubleMetaphoneResult result, int index) argument
339 handleCC(String value, DoubleMetaphoneResult result, int index) argument
365 handleCH(String value, DoubleMetaphoneResult result, int index) argument
396 handleD(String value, DoubleMetaphoneResult result, int index) argument
422 handleG(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
478 handleGH(String value, DoubleMetaphoneResult result, int index) argument
512 handleH(String value, DoubleMetaphoneResult result, int index) argument
530 handleJ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
565 handleL(String value, DoubleMetaphoneResult result, int index) argument
583 handleP(String value, DoubleMetaphoneResult result, int index) argument
599 handleR(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
616 handleS(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
669 handleSC(String value, DoubleMetaphoneResult result, int index) argument
701 handleT(String value, DoubleMetaphoneResult result, int index) argument
731 handleW(String value, DoubleMetaphoneResult result, int index) argument
770 handleX(String value, DoubleMetaphoneResult result, int index) argument
791 handleZ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
813 conditionC0(String value, int index) argument
832 conditionCH0(String value, int index) argument
848 conditionCH1(String value, int index) argument
860 conditionL0(String value, int index) argument
876 conditionM0(String value, int index) argument
938 charAt(String value, int index) argument
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DBase.java15 public static final int StateUpdateChar(int index) argument
17 if (index < 4)
19 if (index < 10)
20 return index - 3;
21 return index - 6;
24 public static final int StateUpdateMatch(int index) argument
26 return (index < 7 ? 7 : 10);
29 public static final int StateUpdateRep(int index) argument
31 return (index < 7 ? 8 : 11);
34 public static final int StateUpdateShortRep(int index) argument
39 StateIsCharState(int index) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java85 for (int index = 0; index < variablesCount; index++)
87 variables[index].variablesAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
97 for (int index = 0; index < stackCount; index++)
99 stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisito
[all...]
/external/clang/test/CodeGenCXX/
H A Dstatic-data-member-single-emission.cpp5 static const int index; member in struct:HasStaticInit
10 const int HasStaticInit<T>::index = the_count++; member in class:HasStaticInit
12 template <typename T> int func_tmpl1() { return HasStaticInit<T>::index; }
13 template <typename T> int func_tmpl2() { return HasStaticInit<T>::index; }
14 template <typename T> int func_tmpl3() { return HasStaticInit<T>::index; }
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeList.java43 public T get(int index) { argument
44 if (index < 0 || index >= size()) {
47 return readItem(index);
51 * Reads the item at {@code index}
52 * @param index The index of the item. This is guaranteed to be in [0, size)
53 * @return The item at the given index
56 public abstract T readItem(int index); argument

Completed in 1034 milliseconds

1234567891011>>