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

1234567891011>>

/external/strace/tests/
H A Difindex.c39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
/external/strace/tests-m32/
H A Difindex.c39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
/external/strace/tests-mx32/
H A Difindex.c39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
/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/skqp/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.cpp11 CPDF_PageObject* CPDF_PageObjectList::GetPageObjectByIndex(int index) { argument
12 return pdfium::IndexInBounds(*this, index) ? (*this)[index].get() : nullptr;
/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.cpp115 The table entries are interpreted either as index to the next entry
126 SCHAR index = 0; local
129 while (index >= 0) {
131 index = h[index][bit];
134 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];
/external/skqp/tests/
H A DPathOpsThreadedCommon.cpp13 for (int index = 0; index < fRunnables.count(); index++) {
14 delete fRunnables[index];
/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/skqp/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...]

Completed in 679 milliseconds

1234567891011>>