Searched defs:ac (Results 1 - 14 of 14) sorted by relevance

/external/speex/libspeex/
H A Dlpc.c75 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[
73 _spx_lpc( spx_coef_t *lpc, const spx_word16_t *ac, int p ) argument
128 _spx_autocorr( const spx_word16_t *x, spx_word16_t *ac, int lag, int n ) argument
181 _spx_autocorr( const spx_word16_t *x, float *ac, int lag, int n ) argument
[all...]
H A Dlpc_bfin.h39 spx_word16_t *ac, /* out: [0...lag-1] ac values */
128 ac[i] = SHR32(ac32[i], ac_shift);
37 _spx_autocorr( const spx_word16_t *x, spx_word16_t *ac, int lag, int n ) argument
/external/e2fsprogs/e2fsck/
H A Dargv_parse.c143 int ac, ret; local
150 ret = argv_parse(buf, &ac, &av);
155 printf("Argv_parse returned %d arguments...\n", ac);
/external/kernel-headers/original/linux/
H A Dtransport_class.h57 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);
H A Dif_tr.h12 * Peter De Schrijver, <stud11@cc4.kuleuven.ac.be>
37 __u8 ac; /* access control field */ member in struct:trh_hdr
/external/opencore/codecs_v2/audio/aac/dec/src/
H A Dcalc_auto_corr.cpp134 void calc_auto_corr_LC(struct ACORR_COEFS *ac, argument
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
250 calc_auto_corr(struct ACORR_COEFS *ac, Int32 realBuf[][32], Int32 imagBuf[][32], Int32 bd, Int32 len) argument
[all...]
H A Dsbr_generate_high_freq.cpp488 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
809 struct ACORR_COEFS ac; local
[all...]
/external/e2fsprogs/misc/
H A De2initrd_helper.c197 int ac, i; local
220 ac = 0;
224 ac = (ac * 8) + (*p - '0');
226 *q = ac;
H A Dfsck.c195 int ac, i; local
218 ac = 0;
222 ac = (ac * 8) + (*p - '0');
224 *q = ac;
/external/opencore/android/author/
H A DPVMediaRecorder.cpp47 author_command *ac = new author_command(AUTHOR_INIT); local
48 if (ac == NULL) {
52 return mAuthorDriverWrapper->enqueueCommand(ac, 0, 0);
63 set_audio_source_command *ac = new set_audio_source_command(); local
64 if (ac == NULL) {
68 ac->as = as;
69 return mAuthorDriverWrapper->enqueueCommand(ac, 0, 0);
80 set_video_source_command *ac = new set_video_source_command(); local
81 if (ac == NULL) {
85 ac
97 set_output_format_command *ac = new set_output_format_command(); local
126 set_output_file_command *ac = new set_output_file_command(); local
159 set_audio_encoder_command *ac = new set_audio_encoder_command(); local
176 set_video_encoder_command *ac = new set_video_encoder_command(); local
193 set_video_frame_rate_command *ac = new set_video_frame_rate_command(); local
210 set_video_size_command *ac = new set_video_size_command(); local
228 set_camera_command *ac = new set_camera_command(); local
245 set_preview_surface_command *ac = new set_preview_surface_command(); local
273 author_command *ac = new author_command(AUTHOR_PREPARE); local
289 author_command *ac = new author_command(AUTHOR_START); local
323 author_command *ac = new author_command(AUTHOR_STOP); local
339 author_command *ac = new author_command(AUTHOR_RESET); local
370 author_command *ac = new author_command(AUTHOR_CLOSE); local
[all...]
H A Dauthordriver.cpp71 author_command *ac = new author_command(AUTHOR_QUIT); local
72 enqueueCommand(ac, NULL, NULL); // will wait on mSyncSem, signaled by author thread
73 delete ac; // have to delete this manually because CommandCompleted won't be called
85 status_t AuthorDriverWrapper::enqueueCommand(author_command *ac, media_completion_f comp, void *cookie) argument
88 return mAuthorDriver->enqueueCommand(ac, comp, cookie);
137 author_command *ac; local
147 ac = *(--mCommandQueue.end());
156 return ac;
159 status_t AuthorDriver::enqueueCommand(author_command *ac, media_completion_f comp, void *cookie) argument
167 ac
202 FinishNonAsyncCommand(author_command *ac) argument
212 author_command *ac = dequeueCommand(); local
292 commandFailed(author_command *ac) argument
299 handleInit(author_command *ac) argument
306 handleSetAudioSource(set_audio_source_command *ac) argument
328 handleSetVideoSource(set_video_source_command *ac) argument
365 handleSetOutputFormat(set_output_format_command *ac) argument
420 handleSetAudioEncoder(set_audio_encoder_command *ac) argument
555 handleSetVideoEncoder(set_video_encoder_command *ac) argument
605 handleSetVideoSize(set_video_size_command *ac) argument
618 handleSetVideoFrameRate(set_video_frame_rate_command *ac) argument
630 handleSetCamera(set_camera_command *ac) argument
637 handleSetPreviewSurface(set_preview_surface_command *ac) argument
649 handleSetOutputFile(set_output_file_command *ac) argument
879 handleSetParameters(set_parameters_command *ac) argument
933 handlePrepare(author_command *ac) argument
941 handleStart(author_command *ac) argument
949 handleStop(author_command *ac) argument
957 handleClose(author_command *ac) argument
965 handleReset(author_command *ac) argument
974 handleRemoveVideoSource(author_command *ac) argument
986 handleRemoveAudioSource(author_command *ac) argument
998 removeConfigRefs(author_command *ac) argument
1016 handleQuit(author_command *ac) argument
1230 author_command *ac = (author_command *)aResponse.GetContext(); local
[all...]
/external/qemu/hw/
H A Dgoldfish_battery.c171 void goldfish_battery_set_prop(int ac, int property, int value) argument
173 int new_status = (ac ? AC_STATUS_CHANGED : BATTERY_STATUS_CHANGED);
175 if (ac) {
/external/webkit/WebCore/plugins/gtk/
H A Dgtk2xtbin.c162 XtAppContext ac; local
165 ac = XtDisplayToApplicationContext(xtdisplay);
175 XtAppProcessEvent(ac, XtIMXEvent);
196 XtAppContext ac; local
200 ac = XtDisplayToApplicationContext(display);
208 while (eventsToProcess-- && XtAppPending(ac))
209 XtAppProcessEvent(ac, XtIMAll);
/external/sqlite/dist/
H A Dsqlite3.c21231 /* Calculations from http://www.astro.keele.ac.uk/~rno/Astronomy/hjd.html
21232 http://www.astro.keele.ac.uk/~rno/Astronomy/hjd-0.1.c */
31880 unsigned char ac[4]; local
31898 char ac[4]; local
52610 } ac; member in union:vdbeExecUnion
[all...]

Completed in 319 milliseconds