Searched refs:order (Results 1 - 25 of 62) sorted by relevance

123

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dtns_ar_filter.cpp44 - Include log2(order) as a scaling down parameter.
74 Description: Changed the order of the unsigned * signed multiply so the
112 order = order of the TNS filter (Range of 1 - TNS_MAX_ORDER)
143 y(n) = x(n) - lpc(2)*y(n-1) - ... - lpc(order+1)*y(n-order)
148 The filter's order is defined by the variable (const Int order)
192 FOR (i=0; i<order; i++)
205 FOR (j=0; j<order;
297 tns_ar_filter( Int32 spec[], const Int spec_length, const Int direction, const Int32 lpc[], const Int Q_lpc, const Int order) argument
[all...]
H A Dtns_decode_coef.h106 const Int order,
H A Ds_tnsfilt.h35 Description: Had to add "start_coef" and "stop_coef" in order to preserve
117 UInt order; member in struct:__anon578
H A Dtns_ar_filter.h95 const Int order);
H A Dtns_inv_filter.cpp68 order = order of the TNS filter (Range of 1 : TNS_MAX_ORDER)
103 y(n) = x(n) + lpc(2)*x(n-1) + ... + lpc(order+1)*x(n-order)
108 In order to avoid overflow, the filter input (Int32 coef[]) must utilize
111 The filter's order is defined by the variable (const Int order)
125 This function should not be called for order <= 0.
167 FOR (i = order; i > 0; i--)
198 FOR (j = (order
296 tns_inv_filter( Int32 coef[], const Int num_coef, const Int direction, const Int32 lpc[], const Int lpc_qformat, const Int order, Int32 scratch_memory[]) argument
[all...]
H A Dtns_inv_filter.h91 const Int order,
H A Dtns_decode_coef.cpp54 (1) Changed the order of the unsigned * signed multiply so the
73 Inputs: order = RANGE = 1-20
158 for (i=0; i<order; i++)
165 for (m=1; m<=order; m++)
284 const Int order,
342 * iteration of the do-while( m < order ) loop.
393 * iteration of the do-while( m < order ) loop.
434 while (m < order);
471 for (m = order; m > 0; m--)
490 for (m = order;
283 tns_decode_coef( const Int order, const Int coef_res, Int32 lpc_coef[TNS_MAX_ORDER], Int32 scratchTnsDecCoefMem[2*TNS_MAX_ORDER]) argument
[all...]
H A Dapply_tns.cpp41 TNS filter (order, filter coefficients,
221 /* Skip to the next filter if the order is 0 */
222 tempInt = pFilt->order;
244 pFilt->order,
387 pFilt->order);
406 pLpcCoef += pFilt->order;
H A Dget_tns.cpp92 pTnsFrameInfo->filt[]->order = The order of each individual TNS filter.
124 the filter order, LPC coefficients, and the number of TNS filters to
471 pFilt->order = tempInt;
477 pFilt->order = max_order;
524 for (t = pFilt->order; t > 0; t--)
552 pFilt->order,
558 } /* if (pTnsFilt->order != 0) */
/frameworks/base/core/java/android/view/
H A DMenu.java54 * This is the part of an order integer that the user can provide.
59 * Bit shift of the user portion of the order integer.
65 * This is the part of an order integer that supplies the category of the
71 * Bit shift of the category portion of the order integer.
91 * Category code for the order integer for items/groups that are part of a
97 * Category code for the order integer for items/groups that are provided by
103 * Category code for the order integer for items/groups that are
110 * Category code for the order integer for items/groups that are
163 * @param order The order fo
168 add(int groupId, int itemId, int order, CharSequence title) argument
185 add(int groupId, int itemId, int order, int titleRes) argument
227 addSubMenu(final int groupId, final int itemId, int order, final CharSequence title) argument
242 addSubMenu(int groupId, int itemId, int order, int titleRes) argument
295 addIntentOptions(int groupId, int itemId, int order, ComponentName caller, Intent[] specifics, Intent intent, int flags, MenuItem[] outSpecificItems) argument
[all...]
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.cpp50 ssize_t SortedListImpl::_indexOrderOf(const void* item, size_t* order) const {
71 if (order) {
72 *order = l;
78 size_t order; local
79 ssize_t index = _indexOrderOf(item, &order);
80 index = VectorImpl::insertAt(item, order, 1);
H A DSortedListImpl.h44 ssize_t _indexOrderOf(const void* item, size_t* order = 0) const;
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A Daz_isp.c22 * Compute the ISPs from the LPC coefficients (order=M) *
30 * For a even order m=2n, F1(z) has M/2 conjugate roots on the unit *
34 * For a 16th order LP analysis, F1(z) and F2(z) can be written as *
66 Word32 i, j, nf, ip, order; local
111 order = NC;
113 ylow = Chebps2(xlow, coef, order);
121 ylow = Chebps2(xlow, coef, order);
128 ymid = Chebps2(xmid, coef, order);
171 order = NC - 1;
176 order
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java59 public MenuItem add(int groupId, int itemId, int order, int titleRes) { argument
60 return add(groupId, itemId, order, mContext.getResources().getString(titleRes));
63 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { argument
65 groupId, itemId, 0, order, title);
66 mItems.add(order, item);
70 public int addIntentOptions(int groupId, int itemId, int order, argument
89 final MenuItem item = add(groupId, itemId, order, ri.loadLabel(pm))
110 public SubMenu addSubMenu(int groupId, int itemId, int order, argument
116 public SubMenu addSubMenu(int groupId, int itemId, int order, int titleRes) { argument
/frameworks/base/opengl/tests/gldual/src/com/android/gldual/
H A DTriangleRenderer.java119 // must have their byte order set to native order
122 vbb.order(ByteOrder.nativeOrder());
126 tbb.order(ByteOrder.nativeOrder());
129 ibb.order(ByteOrder.nativeOrder());
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dstat_bits.c125 if (tnsInfo->order[i]) {
132 for(k=0; k<tnsInfo->order[i]; k++) {
143 for(k=0; k<tnsInfo->order[i]; k++) {
151 for (k=0; k<tnsInfo->order[i]; k++ ) {
H A Dtns.c72 static void Parcor2Index(const Word32 parcor[], Word16 index[], Word16 order,
75 static void Index2Parcor(const Word16 index[], Word32 parcor[], Word16 order,
81 const Word32 parCoeff[], Word16 order,
432 tnsInfo->order[subBlockNumber] = i + 1;
446 tnsInfo->order[subBlockNumber],
477 tnsInfo->order[subBlockNumber] = i + 1;
486 tnsInfo->order[subBlockNumber],
630 * max. TNS order, ptr. to reflection ocefficients
711 * input: <order+1> input values, no. of output values (=order),
809 Parcor2Index(const Word32 parcor[], Word16 index[], Word16 order, Word16 bitsPerCoeff) argument
833 Index2Parcor(const Word16 index[], Word32 parcor[], Word16 order, Word16 bitsPerCoeff) argument
859 FIRLattice(Word16 order, Word32 x, Word32 *state_par, const Word32 *coef_par) argument
895 AnalysisFilterLattice(const Word32 signal[], Word16 numOfLines, const Word32 parCoeff[], Word16 order, Word32 output[]) argument
[all...]
/frameworks/base/opengl/libagl/
H A DTokenizer.h50 ssize_t _indexOrderOf(uint32_t token, size_t* order=0) const;
H A DTokenizer.cpp102 ssize_t Tokenizer::_indexOrderOf(uint32_t token, size_t* order) const
125 if (order) *order = l;
/frameworks/base/opengl/java/android/opengl/
H A DETC1Util.java86 .order(ByteOrder.nativeOrder());
161 .order(ByteOrder.nativeOrder());
170 ByteBuffer dataBuffer = ByteBuffer.allocateDirect(encodedSize).order(ByteOrder.nativeOrder());
185 * @param input a native order direct buffer containing the image data
195 order(ByteOrder.nativeOrder());
212 ByteBuffer header = ByteBuffer.allocateDirect(ETC1.ETC_PKM_HEADER_SIZE).order(ByteOrder.nativeOrder());
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardParserTests.java49 public MockVCardInterpreter addExpectedOrder(Order order) { argument
50 mExpectedOrder.add(order);
54 private void inspectOrder(Order order) { argument
55 mHistory.add(order);
57 assertEquals(top, order);
/frameworks/base/core/java/android/ddm/
H A DDdmHandleAppName.java94 out.order(ChunkHandler.CHUNK_ORDER);
/frameworks/base/media/libstagefright/codecs/aacenc/inc/
H A Dtns.h48 Word16 maxOrder; /* max. order of tns filter */
104 Word16 order[TRANS_FAC]; member in struct:__anon623
/frameworks/compile/libbcc/runtime/make/
H A Dlib_util.mk46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
/frameworks/base/core/java/android/text/format/
H A DDateFormat.java42 Formatting characters may be repeated in order to get more detailed representations
265 * to the current locale and the user's date-order preference.
355 * 3 elements ({@link #DATE}, {@link #MONTH}, and {@link #YEAR}) in the order
356 * specified by the user's format preference. Note that this order is
360 * order returned here.
363 char[] order = new char[] {DATE, MONTH, YEAR};
373 order[index] = DATE;
379 order[index] = MONTH;
385 order[index] = YEAR;
389 return order;
[all...]

Completed in 353 milliseconds

123