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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/samplecode/
vertexdump.cpp 10 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
12 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) {
45 index[0] = 0; index[1] = 5; index[2] = 1;
46 index[3] = 0; index[4] = 4; index[5] = 5;
48 index[6] = 1; index[7] = 6; index[8] = 2
    [all...]
  /external/skia/samplecode/
vertexdump.cpp 10 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
12 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) {
45 index[0] = 0; index[1] = 5; index[2] = 1;
46 index[3] = 0; index[4] = 4; index[5] = 5;
48 index[6] = 1; index[7] = 6; index[8] = 2
    [all...]
  /external/chromium_org/third_party/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/dexmaker/src/dx/java/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/chromium_org/third_party/skia/tests/
PathOpsThreadedCommon.cpp 13 for (int index = 0; index < fRunnables.count(); index++) {
14 SkDELETE(fRunnables[index]);
20 for (int index = 0; index < fRunnables.count(); ++ index) {
21 pool.add(fRunnables[index]);
  /external/qemu/android/
keycode.c 22 int index; local
24 for (index = 0; index < 4; index++) {
25 if (code == wheel[index]) {
26 index = (index + rotation) & 3;
27 code = wheel[index];
  /external/skia/tests/
PathOpsThreadedCommon.cpp 13 for (int index = 0; index < fRunnables.count(); index++) {
14 SkDELETE(fRunnables[index]);
20 for (int index = 0; index < fRunnables.count(); ++ index) {
21 pool.add(fRunnables[index]);
  /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
18 this.index = 0;
23 return (index != -1);
28 if (index == -1)
34 int end = oid.indexOf('.', index);
38 token = oid.substring(index);
39 index = -1;
43 token = oid.substring(index, end);
45 index = end + 1;
  /external/chromium_org/third_party/WebKit/Source/wtf/
BitArray.h 42 void set(unsigned index)
44 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
45 m_data[index / 8] |= 1 << (index & 7);
48 void clear(unsigned index)
50 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize);
51 m_data[index / 8] &= ~(1 << (index & 7));
54 bool get(unsigned index) const
56 ASSERT_WITH_SECURITY_IMPLICATION(index < arraySize)
    [all...]
  /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 34 private int index; field in class:NumericNameFactory
41 index = 0;
47 return Integer.toString(++index);
  /external/chromium_org/chrome/browser/media/
desktop_media_list_observer.h 12 virtual void OnSourceAdded(int index) = 0;
13 virtual void OnSourceRemoved(int index) = 0;
15 virtual void OnSourceNameChanged(int index) = 0;
16 virtual void OnSourceThumbnailChanged(int index) = 0;
  /external/lldb/test/lang/c/const_variables/
main.c 9 int32_t index; local
13 index = 512;
16 index = 256;
18 baaz(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
  /external/chromium_org/third_party/skia/experimental/Intersection/
ConvexHull.cpp 23 size_t index; local
26 for (index = 1; index < 4; ++index) {
27 if (cubic[yMin].y > cubic[index].y || (cubic[yMin].y == cubic[index].y
28 && cubic[yMin].x > cubic[index].x)) {
29 yMin = index;
36 for (index = 0; index < 4; ++index)
109 int index; local
    [all...]
  /external/skia/experimental/Intersection/
ConvexHull.cpp 23 size_t index; local
26 for (index = 1; index < 4; ++index) {
27 if (cubic[yMin].y > cubic[index].y || (cubic[yMin].y == cubic[index].y
28 && cubic[yMin].x > cubic[index].x)) {
29 yMin = index;
36 for (index = 0; index < 4; ++index)
109 int index; local
    [all...]

Completed in 1529 milliseconds

1 2 3 4 5 6 7 8 91011>>