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

1 2 3 4 5 6 7 8

  /tools/loganalysis/src/com/android/loganalysis/item/
PageAllocationFailureItem.java 27 * This stores info about page allocation failures, i.e. order.
33 public static final String ORDER = "ORDER";
35 private static final Set<String> ATTRIBUTES = new HashSet<String>(Arrays.asList(ORDER));
45 * Get the order of the page allocation failure.
48 return (int) getAttribute(ORDER);
52 * Set the order of the page allocation failure.
54 public void setOrder(int order) {
55 setAttribute(ORDER, order);
    [all...]
  /external/python/cpython3/Include/
pyatomic.h 40 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \
41 atomic_signal_fence(ORDER)
43 #define _Py_atomic_thread_fence(/*memory_order*/ ORDER) \
44 atomic_thread_fence(ORDER)
46 #define _Py_atomic_store_explicit(ATOMIC_VAL, NEW_VAL, ORDER) \
47 atomic_store_explicit(&(ATOMIC_VAL)->_value, NEW_VAL, ORDER)
49 #define _Py_atomic_load_explicit(ATOMIC_VAL, ORDER) \
50 atomic_load_explicit(&(ATOMIC_VAL)->_value, ORDER)
71 #define _Py_atomic_signal_fence(/*memory_order*/ ORDER) \
72 __atomic_signal_fence(ORDER)
    [all...]
  /external/libxaac/decoder/
ixheaacd_lpc_dec.c 54 FLOAT32 d[ORDER + 1];
57 d[ORDER] = FREQ_MAX - lsfq[ORDER - 1];
58 for (i = 1; i < ORDER; i++) {
62 for (i = 0; i < ORDER; i++) {
108 WORD32 avq[ORDER];
109 FLOAT32 d[ORDER + 1], lsf_min;
112 ptr_w = &ixheaacd_weight_table_avq[(indx[0] * ORDER)];
116 for (i = 0; i < ORDER; i++) {
117 lsf[i] = ixheaacd_dico_lsf_abs_8b_flt[indx[0] * ORDER + i]
    [all...]
ixheaacd_tcx_fwd_alcnx.c 146 FLOAT32 *ptr_a, i_ap[ORDER + 1];
150 FLOAT32 x[LEN_SUPERFRAME], buf[ORDER + LEN_SUPERFRAME];
238 ixheaacd_lpc_coeff_wt_apply(lp_flt_coff_a + (ORDER + 1), i_ap);
239 ixheaacd_lpc_to_td(i_ap, ORDER, gain1, usac_data->len_subfrm / 4);
241 ixheaacd_lpc_coeff_wt_apply(lp_flt_coff_a + (2 * (ORDER + 1)), i_ap);
242 ixheaacd_lpc_to_td(i_ap, ORDER, gain2, usac_data->len_subfrm / 4);
310 ixheaacd_lpc_coeff_wt_apply(lp_flt_coff_a + (ORDER + 1), i_ap);
348 for (i = 0; i < ORDER + fac_length; i++)
349 buf[i] = synth[i - ORDER - fac_length] -
350 (PREEMPH_FILT_FAC * synth[i - ORDER - fac_length - 1])
    [all...]
ixheaacd_lpc.c 56 extern const FLOAT32 lsf_init[ORDER];
157 ixheaacd_memset(st->lp_flt_coeff_a_prev, 2 * (ORDER + 1));
324 FLOAT32 lsp_curr[ORDER];
325 FLOAT32 lsf_curr[ORDER];
330 FLOAT32 lsf_flt[(2 * NUM_FRAMES + 1) * ORDER];
377 ixheaacd_lsp_2_lsf_conversion(st->lspold, lsf_flt, ORDER);
384 ixheaacd_mem_cpy(&lsf_flt[0], st->lsf_prev, ORDER);
385 ixheaacd_lsf_2_lsp_conversion_float(st->lsf_prev, st->lspold, ORDER);
390 FLOAT32 lp_flt_coeff_a[9 * (ORDER + 1)];
391 FLOAT32 tmp_buf[3 * LEN_FRAME + ORDER];
    [all...]
ixheaacd_cnst.h 30 #define ORDER 16
31 #define ORDER_BY_2 (ORDER / 2)
ixheaacd_main.h 42 float lp_flt_coeff_a_prev[2 * (ORDER + 1)];
48 WORD32 ilspold[ORDER];
53 FLOAT32 lsf_prev[ORDER];
54 FLOAT32 lspold[ORDER];
55 WORD32 lsfold_first[ORDER];
61 FLOAT32 fd_synth_buf[3 * LEN_FRAME + 1 + ORDER];
99 FLOAT32 lpc_prev[MAX_NUM_CHANNELS][ORDER + 1];
ixheaacd_fwd_alias_cnx.c 64 for (i = 1; i <= ORDER; i++) {
78 for (j = 1; j <= ORDER; j += 4) {
99 FLOAT32 lp_filt_coeff_a[ORDER + 1];
112 memset(fac_signal - 16, 0, ORDER * sizeof(WORD32));
147 WORD32 lp_filt_coeff_a[ORDER + 1];
174 memset(fac_data_out - 16, 0, ORDER * sizeof(WORD32));
ixheaacd_acelp_tools.c 79 for (j = 1; j <= ORDER; j += 4) {
97 memcpy(buf, mem, ORDER * sizeof(FLOAT32));
98 yy = &buf[ORDER];
101 for (j = 1; j <= ORDER; j += 4) {
119 for (j = 1; j <= ORDER; j += 4) {
ixheaacd_tcx_fwd_mdct.c 106 plp_flt_coff_a_top = lp_flt_coff_a + ORDER;
117 VOID ixheaacd_lpc_to_td(float *coeff, WORD32 order, float *gains, WORD32 lg) {
133 for (i = 0; i < order + 1; i++) {
204 FLOAT32 lsf[ORDER], *ptr_a;
230 FLOAT32 lsp[ORDER];
241 for (i = 0; i < ORDER; i++) {
248 lp_flt_coff_a += (ORDER + 1);
ixheaacd_acelp_decode.c 432 ptr_lp_filt_coeff += (ORDER + 1);
441 for (i = 0; i < ORDER; i++)
442 synth_temp[i] = synth_signal[i - ORDER] -
443 (PREEMPH_FILT_FAC * synth_signal[i - ORDER - 1]);
571 memcpy(synth_temp, &synth_signal[subfr_idx + LEN_SUBFR - ORDER],
572 ORDER * sizeof(FLOAT32));
574 ptr_lp_filt_coeff += (ORDER + 1);
583 ptr_lp_filt_coeff -= (2 * (ORDER + 1));
585 (2 * (ORDER + 1)) * sizeof(FLOAT32));
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
qisf_ns_tab.cpp 45 const int16 mean_isf_noise[ORDER] =
qisf_ns.h 63 #define ORDER 16 /* order of linear prediction filter */
83 extern const int16 mean_isf_noise[ORDER];
qisf_ns.cpp 138 for (i = 0; i < ORDER; i++)
143 Reorder_isf(isf_q, ISF_GAP, ORDER);
qpisf_2s_tab.cpp 43 const int16 mean_isf[ORDER] =
    [all...]
qpisf_2s.h 86 extern const int16 mean_isf[ORDER];
qpisf_2s.cpp 167 for (i = 0; i < ORDER; i++)
201 for (i = 0; i < ORDER; i++)
208 for (i = 0; i < ORDER; i++)
217 Reorder_isf(isf_q, ISF_GAP, ORDER);
261 for (i = 0; i < ORDER; i++)
296 for (i = 0; i < ORDER; i++)
303 for (i = 0; i < ORDER; i++)
311 Reorder_isf(isf_q, ISF_GAP, ORDER);
319 * To make sure that the isfs are properly order and to keep a certain
326 * n LPC order
    [all...]
  /external/clang/test/Modules/
merge-using-decls.cpp 5 #if ORDER == 1
35 // if this varies with ORDER, but it must be consistent across runs.
36 #if ORDER == 1
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
qpisf_2s.tab 25 #define ORDER 16 /* order of linear prediction filter */
42 static Word16 mean_isf[ORDER] = {
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
qisf_ns.c 44 for (i = 0; i < ORDER; i++)
100 for (i = 0; i < ORDER; i++)
105 Reorder_isf(isf_q, ISF_GAP, ORDER);
qpisf_2s.c 67 Word16 isf[ORDER];
68 Word16 isf_stage2[ORDER];
70 for (i = 0; i < ORDER; i++)
157 Word16 isf[ORDER];
158 Word16 isf_stage2[ORDER];
160 for (i = 0; i < ORDER; i++)
262 for (i = 0; i < ORDER; i++)
294 for (i = 0; i < ORDER; i++)
300 for (i = 0; i < ORDER; i++)
308 Reorder_isf(isf_q, ISF_GAP, ORDER);
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDeviceNamePreferenceControllerTest.java 45 private static final int ORDER = 1;
85 mController.createBluetoothDeviceNamePreference(mPreferenceScreen, ORDER);
88 assertThat(preference.getOrder()).isEqualTo(ORDER);
BluetoothPairingPreferenceControllerTest.java 45 private static final int ORDER = 1;
70 Preference pref = mController.createBluetoothPairingPreference(ORDER);
74 assertThat(pref.getOrder()).isEqualTo(ORDER);
  /frameworks/base/obex/javax/obex/
ApplicationParameter.java 84 public static class ORDER {
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
CollationTest.java 171 @Query("SELECT * FROM CollateEntity ORDER BY localizedName ASC")
174 @Query("SELECT * FROM CollateEntity ORDER BY localizedName COLLATE UNICODE ASC")
177 @Query("SELECT * FROM CollateEntity ORDER BY unicodeName ASC")
180 @Query("SELECT * FROM CollateEntity ORDER BY unicodeName COLLATE LOCALIZED ASC")

Completed in 1206 milliseconds

1 2 3 4 5 6 7 8