Searched defs:index (Results 1 - 25 of 587) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dd2_11pf.cpp95 index -- Word16 -- Positions of the 2 pulses.
152 Word16 index, /* i : Positions of the 2 pulses. */
164 j = index & 0x1;
166 index >>= 1;
168 i = index & 0x7;
175 index >>= 3;
177 j = index & 0x3;
179 index >>= 2;
181 i = index & 0x7;
150 decode_2i40_11bits( Word16 sign, Word16 index, Word16 cod[] ) argument
H A Dd3_14pf.cpp101 index -- Word16 -- Positions of the 3 pulses.
158 Word16 index, /* i : Positions of the 3 pulses. */
169 i = index & 0x7;
177 index >>= 3;
179 j = index & 0x1;
181 index >>= 1;
183 i = index & 0x7;
191 index >>= 3;
193 j = index & 0x1;
195 index >>
156 decode_3i40_14bits( Word16 sign, Word16 index, Word16 cod[] ) argument
[all...]
H A Dd4_17pf.cpp121 index -- Word16 -- Positions of the 3 pulses.
178 Word16 index, /* i : Positions of the 4 pulses. */
199 i = index & 0x7;
206 index >>= 3;
208 i = index & 0x7;
216 index >>= 3;
218 i = index & 0x7;
228 index >>= 3;
230 j = index & 0x1;
232 index >>
176 decode_4i40_17bits( Word16 sign, Word16 index, Word16 cod[] ) argument
[all...]
H A Dd1035pf.cpp93 index = buffer containing index of 10 pulses; each element is
112 This function builds the innovative codevector from the received index of
130 Word16 index[], // (i) : index of 10 pulses (sign+position)
145 // compute index i
147 tmp = index[j];
166 // compute index i
168 i = index[add (j, 5)] & 7;
208 Word16 index[], /* (
207 dec_10i40_35bits( Word16 index[], Word16 cod[] ) argument
[all...]
H A Dd2_9pf.cpp119 index -- Word16 -- Positions of the 2 pulses.
178 Word16 index, /* i : Positions of the 2 pulses. */
192 j = (Word16)(index & 64);
196 i = index & 7;
210 index >>= 3;
212 i = index & 7;
175 decode_2i40_9bits( Word16 subNr, Word16 sign, Word16 index, Word16 cod[], Flag *pOverflow ) argument
H A Ddec_lag3.cpp63 index -- Word16 -- received pitch index
93 the received adaptive codebook index.
186 void Dec_lag3(Word16 index, /* i : received pitch index */ argument
204 if (index < 197)
207 tmp_lag = index + 2;
230 index,
242 *T0 = index - 112;
258 index,
[all...]
H A Ddec_lag6.cpp63 index -- Word16 -- received pitch index
89 the received adaptive codebook index.
96 decoder receives 61, 62, or 63 as the relative pitch index, it means
186 Word16 index, /* input : received pitch index */
203 if (index < 463)
205 /* T0 = (index+5)/6 + 17 */
206 i = index + 5;
226 /* *T0_frac = index
185 Dec_lag6( Word16 index, Word16 pit_min, Word16 pit_max, Word16 i_subfr, Word16 *T0, Word16 *T0_frac, Flag *pOverflow ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Ddec_acelp_2p_in_64.cpp47 int16 index, (i): 12 bits index
125 int16 index, /* (i): 12 bits index */
135 i = (index >> 5) & 0x003E;
137 if (((index >> 6) & NB_POS) == 0)
146 i = ((index & 0x001F) << 1) + 1;
148 if ((index & NB_POS) == 0)
124 dec_acelp_2p_in_64( int16 index, int16 code[] ) argument
/frameworks/base/core/java/android/database/
H A DCursorIndexOutOfBoundsException.java24 public CursorIndexOutOfBoundsException(int index, int size) { argument
25 super("Index " + index + " requested, with a size of " + size);
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardListClient.java34 * Notify the client that the <var>item</var> at <var>index</var> is now
37 * @param index The new history index
39 public void onIndexChanged(WebHistoryItem item, int index) { } argument
H A DWebBackForwardList.java44 * Get the index of the current history item. This index can be used to
45 * directly index into the array list.
46 * @return The current index from 0...n or -1 if the list is empty.
53 * Get the history item at the given index. The index range is from 0...n
55 * @param index The index to retrieve.
57 public synchronized WebHistoryItem getItemAtIndex(int index) { argument
/frameworks/compile/linkloader/include/
H A DELFSectionRelTable.h49 ELFRelocTy const *operator[](size_t index) const {
50 return table[index];
53 ELFRelocTy *operator[](size_t index) { argument
54 return table[index];
H A DELFSectionBits.h48 unsigned char &operator[](size_t index) { argument
49 return chunk[index];
52 unsigned char const &operator[](size_t index) const {
53 return chunk[index];
H A DELFSectionSymTab.h52 ELFSymbolTy const *operator[](size_t index) const {
53 return table[index];
56 ELFSymbolTy *operator[](size_t index) { argument
57 return table[index];
H A DMemChunk.h47 unsigned char &operator[](size_t index) { argument
48 return buf[index];
51 unsigned char const &operator[](size_t index) const {
52 return buf[index];
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Denc_lag6.cpp106 Word16 -- Return index of encoding
128 index = (T-17)*6 + frac - 3;
131 index = (T - 95) + 463; where T=[95..143]
142 index = (T-(t_min-1))*6 + frac - 3;
146 or 63 as the relative pitch index, it means that a transmission
186 Word16 Enc_lag6( /* o : Return index of encoding */
194 Word16 index; local
203 /* index = T0*6 - 105 + T0_frac */
206 index = add(i, T0_frac, pOverflow);
210 index
[all...]
H A Denc_lag3.cpp127 * index = (T-19)*3 + frac - 1;
130 * index = (T - 85) + 197; where T=[86..143]
141 * index = (T-(t_min-1))*3 + frac - 1;
157 Word16 index, i, tmp_ind, uplag;
167 // index = T0*3 - 58 + T0_frac
169 index = add (sub (i, 58), T0_frac);
173 index = add (T0, 112);
182 // index = 3*(T0 - T0_min) + 2 + T0_frac
185 index = add (add (i, 2), T0_frac);
204 index
262 Word16 index, i, tmp_ind, uplag; local
[all...]
H A Dq_gain_c.cpp141 quantization index -- Word16 -- Q0
191 Word16 q_gain_code( /* o : quantization index, Q0 */
205 Word16 index; local
253 index = 0;
270 index = i;
274 temp = index + (index << 1);
292 return index;
H A Dq_gain_p.cpp130 Word16 -- index of quantization
179 Word16 q_gain_pitch( /* Return index of quantization */
189 Word16 index; local
196 index = 0;
208 index = i;
215 /* in MR795 mode, compute three gain_pit candidates around the index
216 * found in the quantization loop: the index found and the two direct
222 if (index == 0)
224 ii = index;
228 if (index
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/comm/src/
H A DomxVCCOMM_Copy16x16.c60 OMX_INT count,index, x, y; local
71 for (y = 0, count = 0, index = 0; y < 16; y++, count = count + step - 16)
73 for (x = 0; x < 16; x++, count++, index++)
75 pDst[index] = pSrc[count];
H A DomxVCCOMM_Copy8x8.c60 OMX_INT count,index, x, y; local
71 for (y = 0, count = 0, index = 0; y < 8; y++, count = count + step - 8)
73 for (x = 0; x < 8; x++, count++, index++)
75 pDst[index] = pSrc[count];
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DTypedArray_Delegate.java26 public static boolean getValueAt(TypedArray theTypedArray, int index, TypedValue outValue) { argument
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_mesh.c27 rsgMeshGetVertexAllocation(rs_mesh m, uint32_t index) { argument
29 if (mesh == NULL || index >= mesh->mHal.state.vertexBuffersCount) {
33 rs_allocation returnAlloc = {mesh->mHal.state.vertexBuffers[index]};
38 rsgMeshGetIndexAllocation(rs_mesh m, uint32_t index) { argument
40 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
44 rs_allocation returnAlloc = {mesh->mHal.state.indexBuffers[index]};
49 rsgMeshGetPrimitive(rs_mesh m, uint32_t index) { argument
51 if (mesh == NULL || index >= mesh->mHal.state.primitivesCount) {
54 return mesh->mHal.state.primitives[index];
/frameworks/compile/linkloader/include/impl/
H A DELFReloc.hxx28 ELFReloc_CRTP<Bitwidth>::readRela(Archiver &AR, size_t index) { argument
47 // Set the section header index
48 sh->index = index;
56 ELFReloc_CRTP<Bitwidth>::readRel(Archiver &AR, size_t index) { argument
75 // Set the section header index
76 sh->index = index;
H A DELFSectionHeader.hxx36 size_t index) {
56 // Set the section header index
57 sh->index = index;
34 read(Archiver &AR, ELFObjectTy const *owner, size_t index) argument

Completed in 3345 milliseconds

1234567891011>>