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

1 2 3 4 5 6 7

  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/OS2/
config.h 28 #define argv_fixup(ac,av) { _response(ac,av); _wildcard(ac,av);}
  /external/speex/libspeex/
lpc.h 42 spx_word16_t *ac, /* out: [0...lag-1] ac values */
48 const spx_word16_t * ac, /* in: [0...p] autocorrelation values */
lpc.c 75 const spx_word16_t *ac, /* in: [0...p] autocorrelation values */
81 spx_word16_t error = ac[0];
83 if (ac[0] == 0)
93 spx_word32_t rr = NEG32(SHL32(EXTEND32(ac[i + 1]),13));
95 rr = SUB32(rr,MULT16_16(lpc[j],ac[i - j]));
99 r = rr/(error+.003*ac[0]);
122 * ac(i) = > x(n) * x(n-i) for all n
130 spx_word16_t *ac, /* out: [0...lag-1] ac values */
165 ac[i] = SHR32(d, ac_shift)
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
calc_auto_corr.cpp 134 void calc_auto_corr_LC(struct ACORR_COEFS *ac,
196 ac->r01r = (Int32)(temp_r01r >> temp3);
197 ac->r02r = (Int32)(temp_r02r >> temp3);
198 ac->r11r = (Int32)(temp_r11r >> temp3);
199 ac->r12r = (Int32)(temp_r12r >> temp3);
200 ac->r22r = (Int32)(temp_r22r >> temp3);
209 ac->r01r = (Int32)(temp_r01r << temp3);
210 ac->r02r = (Int32)(temp_r02r << temp3);
211 ac->r11r = (Int32)(temp_r11r << temp3);
212 ac->r12r = (Int32)(temp_r12r << temp3)
    [all...]
calc_auto_corr.h 96 void calc_auto_corr_LC(struct ACORR_COEFS *ac,
104 void calc_auto_corr(struct ACORR_COEFS *ac,
sbr_generate_high_freq.cpp 488 struct ACORR_COEFS ac; local
505 calc_auto_corr_LC(&ac,
510 if (ac.r11r && ac.det)
513 pv_div(ac.r01r, ac.r11r, &quotient);
567 * alphar[1][loBand] = ( ac.r01r * ac.r12r - ac.r02r * ac.r11r ) / ac.det
809 struct ACORR_COEFS ac; local
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
txCtrlParams.c 74 TI_UINT32 ac; local
84 * For each AC under admission control calculate the new usage and credit time,
87 for(ac = 0 ; ac < MAX_NUM_OF_AC ; ac++)
90 if(pTxCtrl->mediumTime[ac] == 0)
92 TRACE1(pTxCtrl->hReport, REPORT_SEVERITY_INFORMATION, ": ac = %d mediumTime = 0 \n", ac);
98 if(currentTimeStamp < pTxCtrl->lastCreditCalcTimeStamp[ac])
99 pTxCtrl->lastCreditCalcTimeStamp[ac] = 0
336 TI_UINT32 ac; local
743 TI_UINT32 ac; local
    [all...]
txCtrl.c 82 TI_UINT32 ac,
86 TI_UINT32 ac,
98 /* Get the highest admitted AC equal or below the requested one. */
99 /* AC to TID translation is bivalent so update TID only if the AC was changed. */
100 #define SELECT_AC_FOR_TID(ptc,tid,ac) \
101 ac = ptc->highestAdmittedAc[WMEQosTagToACTable[tid]]; \
102 if (ac != WMEQosTagToACTable[tid]) \
103 tid = WMEQosAcToTid[ac]
193 TI_UINT32 ac; local
608 TI_UINT32 ac; local
1074 TI_UINT32 ac = 0; local
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
txCtrlParams.c 74 TI_UINT32 ac; local
84 * For each AC under admission control calculate the new usage and credit time,
87 for(ac = 0 ; ac < MAX_NUM_OF_AC ; ac++)
90 if(pTxCtrl->mediumTime[ac] == 0)
92 TRACE1(pTxCtrl->hReport, REPORT_SEVERITY_INFORMATION, ": ac = %d mediumTime = 0 \n", ac);
98 if(currentTimeStamp < pTxCtrl->lastCreditCalcTimeStamp[ac])
99 pTxCtrl->lastCreditCalcTimeStamp[ac] = 0
341 TI_UINT32 ac; local
734 TI_UINT32 ac; local
    [all...]
txCtrl.c 82 TI_UINT32 ac,
86 TI_UINT32 ac,
98 /* Get the highest admitted AC equal or below the requested one. */
99 /* AC to TID translation is bivalent so update TID only if the AC was changed. */
100 #define SELECT_AC_FOR_TID(ptc,tid,ac) \
101 ac = ptc->highestAdmittedAc[WMEQosTagToACTable[tid]]; \
102 if (ac != WMEQosTagToACTable[tid]) \
103 tid = WMEQosAcToTid[ac]
193 TI_UINT32 ac; local
599 TI_UINT32 ac; local
1060 TI_UINT32 ac = 0; local
    [all...]
  /external/libpng/
autogen.sh 7 touch Makefile.am configure.ac
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
AbstractCollectionTest.java 32 AbstractCollection<Object> ac = new AbstractCollection<Object>() { local
48 ac.add(null);
58 AbstractCollection<String> ac = new AbstractCollection<String>() { local
79 assertTrue(ac.addAll(fixtures));
87 AbstractCollection<String> ac = new AbstractCollection<String>() { local
108 assertTrue(ac.containsAll(fixtures));
116 AbstractCollection<Object> ac = new AbstractCollection<Object>(){ local
128 assertTrue(ac.isEmpty());
137 AbstractCollection<String> ac = new AbstractCollection<String>() { local
166 assertTrue(ac.removeAll(Arrays.asList("0", "1", "2")))
179 AbstractCollection<String> ac = new AbstractCollection<String>() { local
216 AbstractCollection<String> ac = new AbstractCollection<String>() { local
256 AbstractCollection<String> ac = new AbstractCollection<String>() { local
    [all...]
  /external/kernel-headers/original/linux/
transport_class.h 57 struct attribute_container ac; member in struct:transport_container
62 container_of(x, struct transport_container, ac)
86 return attribute_container_register(&tc->ac);
91 return attribute_container_unregister(&tc->ac);
  /external/freetype/src/autofit/
aftypes.h 374 FT_Init_Class_##script_class(AF_ScriptClassRec* ac);
379 FT_Init_Class_##script_class(AF_ScriptClassRec* ac) \
381 ac->script = script_; \
382 ac->script_uni_ranges = ranges; \
384 ac->script_metrics_size = m_size; \
386 ac->script_metrics_init = m_init; \
387 ac->script_metrics_scale = m_scale; \
388 ac->script_metrics_done = m_done; \
390 ac->script_hints_init = h_init; \
391 ac->script_hints_apply = h_apply;
    [all...]
  /external/skia/src/images/
SkImageRef_GlobalPool.cpp 60 SkAutoMutexAcquire ac(gImageRefMutex);
65 SkAutoMutexAcquire ac(gImageRefMutex);
70 SkAutoMutexAcquire ac(gImageRefMutex);
75 SkAutoMutexAcquire ac(gImageRefMutex);
80 SkAutoMutexAcquire ac(gImageRefMutex);
  /external/ipsec-tools/src/racoon/
racoonctl.c 255 main(ac, av)
256 int ac;
278 while ((c = getopt(ac, av, "lds:")) != -1) {
298 ac -= optind;
301 combuf = get_combuf(ac, av);
368 get_combuf(ac, av)
369 int ac;
374 if (ac == 0) {
391 ac--;
393 return (cp->func)(ac, av)
    [all...]
main.c 142 main(ac, av)
143 int ac;
178 parse(ac, av);
291 parse(ac, av)
292 int ac;
308 while ((c = getopt(ac, av, "dLFp:P:a:f:l:vZBC"
389 ac -= optind;
392 if (ac != 0) {
  /bionic/libc/kernel/common/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /development/ndk/platforms/android-3/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
transport_class.h 42 struct attribute_container ac; member in struct:transport_container
46 #define attribute_container_to_transport_container(x) container_of(x, struct transport_container, ac)

Completed in 2669 milliseconds

1 2 3 4 5 6 7