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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
ifindex.c 39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
  /external/strace/tests-m32/
ifindex.c 39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
  /external/strace/tests-mx32/
ifindex.c 39 static unsigned int index; local
41 if (!index)
42 index = if_nametoindex("lo");
44 return index;
  /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/skqp/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 11 CPDF_PageObject* CPDF_PageObjectList::GetPageObjectByIndex(int index) {
12 return pdfium::IndexInBounds(*this, index) ? (*this)[index].get() : nullptr;
  /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 115 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/
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];
  /external/skqp/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

Completed in 962 milliseconds

1 2 3 4 5 6 7 8 91011>>