HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 1 - 25 of 17259) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
range_casts.c 8 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 + 1 == 0
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/
vertexdump.cpp 9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) {
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[7] = 6; index[8] = 2
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
index_conv_dec.c 22 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;
index_conv_enc.c 25 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;
index_conv_dec.h 25 int16_t *index /* (i/o) Codebook indexes */
index_conv_enc.h 29 int16_t *index /* (i/o) Codebook indexes */
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
25 private int index; field in class:IndexedItem
28 * Constructs an instance. The index is initially unassigned.
31 index = -1;
35 * Gets whether or not this instance has been assigned an index.
37 * @return {@code true} iff this instance has been assigned an index
40 return (index >= 0);
44 * Gets the item index.
46 * @return {@code >= 0;} the index
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
25 private int index; field in class:IndexedItem
28 * Constructs an instance. The index is initially unassigned.
31 index = -1;
35 * Gets whether or not this instance has been assigned an index.
37 * @return {@code true} iff this instance has been assigned an index
40 return (index >= 0);
44 * Gets the item index.
46 * @return {@code >= 0;} the index
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_pageobjectlist.cpp 12 CPDF_PageObject* CPDF_PageObjectList::GetPageObjectByIndex(int index) {
13 if (index < 0 || index >= pdfium::CollectionSize<int>(*this))
15 return (*this)[index].get();
  /external/v8/src/
lookup-cache.cc 13 for (int index = 0; index < kLength; index++) keys_[index].source = NULL;
  /external/aac/libSBRdec/src/
huff_dec.cpp 96 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/
ByteArray.java 23 * Reads an unsigned 16bit integer at the index.
25 public static int readU16bit(byte[] code, int index) {
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) {
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) {
    [all...]
  /external/libunwind/src/unwind/
SetGR.c 32 _Unwind_SetGR (struct _Unwind_Context *context, int index,
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/
OIDTokenizer.java 12 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/
implicit-builtin-redecl.c 17 int index = 1; local
20 static int index; variable
23 return index << 2;
  /external/proguard/src/proguard/obfuscate/
NumericNameFactory.java 31 private int index; field in class:NumericNameFactory
38 index = 0;
44 return Integer.toString(++index);
  /libcore/ojluni/src/main/java/java/text/
ParsePosition.java 50 * you can use the same <code>ParsePosition</code>, since the index parameter
63 * with each call setting index up for the next one.
65 int index = 0; field in class:ParsePosition
70 * is the index of the character at which parsing will begin; on output, it
71 * is the index of the character following the last character parsed.
76 return index;
82 * @param index the current parse position
84 public void setIndex(int index) {
85 this.index = index;
    [all...]
  /external/skia/tests/
PathOpsThreadedCommon.cpp 13 for (int index = 0; index < fRunnables.count(); index++) {
14 delete fRunnables[index];
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetProgramResourceName.java 1 // C function void glGetProgramResourceName ( GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name )
6 int index
glGetStringi.java 1 // C function const GLubyte * glGetStringi ( GLenum name, GLuint index )
5 int index
  /art/test/562-checker-no-intermediate/src/
Main.java 27 /// CHECK-DAG: <<Index:i\d+>> BoundsCheck
28 /// CHECK-DAG: <<ArrayGet:i\d+>> ArrayGet [<<Array>>,<<Index>>]
31 /// CHECK-DAG: ArraySet [<<Array>>,<<Index>>,<<Add>>]
37 /// CHECK-DAG: <<Index:i\d+>> BoundsCheck
39 /// CHECK-DAG: <<ArrayGet:i\d+>> ArrayGet [<<Address1>>,<<Index>>]
43 /// CHECK-DAG: ArraySet [<<Address2>>,<<Index>>,<<Add>>]
49 /// CHECK-DAG: <<Index:i\d+>> BoundsCheck
51 /// CHECK-DAG: <<ArrayGet:i\d+>> ArrayGet [<<Address1>>,<<Index>>]
55 /// CHECK-DAG: ArraySet [<<Address2>>,<<Index>>,<<Add>>]
61 /// CHECK-DAG: <<Index:i\d+>> BoundsChec
95 static int index = 0; field in class:Main
    [all...]
  /external/clang/test/CodeGen/
avx512pf-builtins.c 8 void test_mm512_mask_prefetch_i32gather_pd(__m256i index, __mmask8 mask, void const *addr, int hint) {
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) {
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) {
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) {
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) {
35 return _mm512_mask_prefetch_i64gather_pd(index, mask, addr, 2, 1);
    [all...]
  /external/emma/core/java12/com/vladium/jcd/compiler/
CodeGen.java 26 public static void load_local_object_var (final ByteArrayOStream out, final int index)
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)
48 if (index <= 3)
50 out.write (_astore_0 + index); // astore_
88 final int index = cls.getConstants ().add (new CONSTANT_Integer_info (value)); local
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
MultiAttributeVisitor.java 81 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 < attributeVisitors.length; index++
    [all...]
  /external/skia/src/core/
SkVertState.cpp 11 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 + 1]
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 1569 milliseconds

1 2 3 4 5 6 7 8 91011>>