HomeSort by relevance Sort by last modified time
    Searched refs:INDEX (Results 1 - 18 of 18) sorted by null

  /device/samsung/crespo/include/
s3c_bc.h 56 #define S3C_BC_IOWR(INDEX) _IOWR(S3C_BC_IOC_GID, INDEX, S3C_BC_ioctl_package)
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
adaptive_smooth_no_mmx.cpp 275 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr);
289 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr) + INDEX(pell, thr);
310 *sign_V_ptr = INDEX(pelu, thr) + INDEX(pelc, thr) +
311 INDEX(pell, thr);
370 *sign_V_ptr++ = INDEX(pelu, thr) + INDEX(pelc, thr)
    [all...]
deringing_chroma.cpp 79 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
86 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
95 *ptr3 = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres);
145 *ptr3++ = INDEX(pelu, thres) + INDEX(pelc, thres) + INDEX(pell, thres)
    [all...]
post_proc.h 37 #define INDEX(x,thr) (((x)>=thr)?1:0)
  /external/bison/src/
relation.c 55 static relation_nodes INDEX;
68 INDEX[i] = height = top;
73 if (INDEX[R[i][j]] == 0)
76 if (INDEX[i] > INDEX[R[i][j]])
77 INDEX[i] = INDEX[R[i][j]];
82 if (INDEX[i] == height)
86 INDEX[j] = infinity;
102 INDEX = xcalloc (size + 1, sizeof *INDEX)
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 44 int INDEX = 100;
47 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE;
63 throw new CursorIndexOutOfBoundsException(INDEX, SIZE);
  /external/clearsilver/csharp/
csperftest.cs 8 public delegate void test_function(int INDEX);
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 74 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
75 CREATE INDEX extensionsIndex1 ON extensions (person, name);
76 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
77 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
78 CREATE INDEX groupmembershipIndex3 ON groupmembership (group_sync_account, group_sync_id);
79 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
80 CREATE INDEX organizationsIndex1 ON organizations (person);
81 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
82 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
83 CREATE INDEX peopleNameIndex ON people (name)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 106 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
107 CREATE INDEX extensionsIndex1 ON extensions (person, name);
108 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
109 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
110 CREATE INDEX groupmembershipIndex3 ON groupmembership (group_sync_account, group_sync_id);
111 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
112 CREATE INDEX organizationsIndex1 ON organizations (person);
113 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
114 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
115 CREATE INDEX peopleNameIndex ON people (name)
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 130 CREATE INDEX contactMethodsPeopleIndex ON contact_methods (person);
131 CREATE INDEX extensionsIndex1 ON extensions (person, name);
132 CREATE INDEX groupmembershipIndex1 ON groupmembership (person, group_id);
133 CREATE INDEX groupmembershipIndex2 ON groupmembership (group_id, person);
134 CREATE INDEX groupmembershipIndex3 ON groupmembership (group_sync_account, group_sync_id);
135 CREATE INDEX groupsSyncDirtyIndex ON groups (_sync_dirty);
136 CREATE INDEX organizationsIndex1 ON organizations (person);
137 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
138 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
139 CREATE INDEX peopleNameIndex ON people (name)
    [all...]
  /external/bison/lib/
bitset.h 284 /* Find next set bit from the given bit index. */
287 /* Find previous set bit from the given bit index. */
302 /* Loop over all elements of BSET, starting with MIN, setting INDEX
303 to the index of each set bit. For example, the following will print
314 #define BITSET_FOR_EACH(ITER, BSET, INDEX, MIN) \
320 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1); \
325 MIN, setting INDEX to the index of each set bit. For example, the
336 #define BITSET_FOR_EACH_REVERSE(ITER, BSET, INDEX, MIN) \
342 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1);
    [all...]
  /external/zlib/examples/
enough.c 16 Use a macro to compute the history index
49 has size 1 << (len - root), to index the remaining bits in that set of
135 We build the array with length max-1 lists for the len index, with syms-3
137 varying in length as a function of sym. See the calculation of index in
138 count() for the index, and the calculation of size in main() for the size
155 states. mem and rem are used to calculate a single index in a triangular
175 /* Index function for num[] and done[] */
176 #define INDEX(i,j,k) (((size_t)((i-1)>>1)*((i-2)>>1)+(j>>1)-1)*(max-1)+k-1)
207 size_t index; /* index of this case in *num * local
257 size_t index; \/* index for this state's bit vector *\/ local
404 size_t index; \/* index of this case in *num *\/ local
    [all...]
  /system/media/opensles/tests/sandbox/
intbufq.c 38 #define INDEX index
44 #define INDEX playIndex
237 printf("\rplayIndex=%u\r\n", (unsigned) bufqstate.INDEX);
  /frameworks/base/graphics/java/android/renderscript/
Element.java 79 INDEX (5),
283 return new Element(rs, DataType.UNSIGNED_16, DataKind.INDEX, false, 1);
  /bionic/libc/arch-x86/string/
ssse3-memcpy5.S 107 jump table with relative offsets. INDEX is a register contains the
108 index into the jump table. SCALE is the scale of INDEX. */
109 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \
116 addl (%ebx,INDEX,SCALE), %ebx; \
123 # define BRANCH_TO_JMPTBL_ENTRY_TAIL(TABLE, INDEX, SCALE) \
124 addl (%ebx,INDEX,SCALE), %ebx; \
144 absolute offsets. INDEX is a register contains the index into the
145 jump table. SCALE is the scale of INDEX. *
    [all...]
  /external/bluetooth/glib/tests/
queue-test.c 204 PEEK_NTH, INDEX, REMOVE, REMOVE_ALL,
471 case INDEX:
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree.h 272 /* Clause codes. Do not reorder, as this is used to index into the tables
1528 tree index; local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
tree.h 272 /* Clause codes. Do not reorder, as this is used to index into the tables
1540 tree index; local
    [all...]

Completed in 325 milliseconds