Searched refs:st (Results 76 - 100 of 171) sorted by relevance

1234567

/frameworks/base/media/java/android/media/audiofx/
H A DPresetReverb.java242 StringTokenizer st = new StringTokenizer(settings, "=;");
243 int tokens = st.countTokens();
244 if (st.countTokens() != 3) {
247 String key = st.nextToken();
253 key = st.nextToken();
257 preset = Short.parseShort(st.nextToken());
H A DLoudnessEnhancer.java227 StringTokenizer st = new StringTokenizer(settings, "=;");
228 //int tokens = st.countTokens();
229 if (st.countTokens() != 3) {
232 String key = st.nextToken();
238 key = st.nextToken();
242 targetGainmB = Integer.parseInt(st.nextToken());
H A DEqualizer.java461 StringTokenizer st = new StringTokenizer(settings, "=;");
462 int tokens = st.countTokens();
463 if (st.countTokens() < 5) {
466 String key = st.nextToken();
472 key = st.nextToken();
476 curPreset = Short.parseShort(st.nextToken());
477 key = st.nextToken();
481 numBands = Short.parseShort(st.nextToken());
482 if (st.countTokens() != numBands*2) {
487 key = st
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dpstfilt.cpp264 st = pointer to a structure of type Post_FilterState
273 fields of the structure pointed to by st contains the updated field
312 Post_FilterState *st, // i/o : post filter states
331 Word16 *syn_work = &st->synth_buf[M];
359 Residu (Ap3, &syn_work[i_subfr], st->res2, L_SUBFR);
369 // 1st correlation of h[]
395 preemphasis (st->preemph_state, st->res2, temp2, L_SUBFR);
399 Syn_filt (Ap4, st->res2, &syn[i_subfr], L_SUBFR, st
439 Post_Filter( Post_FilterState *st, enum Mode mode, Word16 *syn, Word16 *Az_4, Flag *pOverflow ) argument
[all...]
H A Dsp_dec.h85 Stores pointer to filter status struct in *st. This pointer has to
101 Speech_Decode_FrameState *st, /* io: post filter states */
H A Ddec_amr.h167 * Description : Stores pointer to filter status struct in *st. This
171 Word16 Decoder_amr_init(Decoder_amrState *st);
178 Word16 Decoder_amr_reset(Decoder_amrState *st, enum Mode mode);
186 Decoder_amrState *st, /* i/o : State variables */
H A Dd_plsf_5.cpp124 st = pointer to a structure of type D_plsfState
127 lsp1_q = pointer to the quantized 1st LSP vector (Word16)
131 lsp1_q points to the updated quantized 1st LSP vector
164 D_plsfState *st, // i/o: State variables
168 Word16 *lsp1_q, // o : quantized 1st LSP vector (M), Q15
184 // lsfi_q[i] = ALPHA*st->past_lsf_q[i] + ONE_ALPHA*mean_lsf[i];
186 lsf1_q[i] = add (mult (st->past_lsf_q[i], ALPHA),
196 // temp = mean_lsf[i] + st->past_r_q[i] * LSP_PRED_FAC_MR122;
198 temp = add (mean_lsf[i], mult (st->past_r_q[i],
201 st
301 D_plsf_5( D_plsfState *st, Word16 bfi, Word16 *indice, Word16 *lsp1_q, Word16 *lsp2_q, Flag *pOverflow ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dol_ltp.cpp89 st = pointer to pitchOLWghtState structure
131 pitchOLWghtState *st, // i/o : State struct
162 *T_op = Pitch_ol_wgh(st, vadSt, wsp, PIT_MIN, PIT_MAX, L_FRAME_BY2,
202 pitchOLWghtState *st, /* i/o : State struct */
235 *T_op = Pitch_ol_wgh(st, vadSt, wsp, PIT_MIN, PIT_MAX, L_FRAME_BY2,
201 ol_ltp( pitchOLWghtState *st, vadState *vadSt, enum Mode mode, Word16 wsp[], Word16 *T_op, Word16 old_lags[], Word16 ol_gain_flg[], Word16 idx, Flag dtx, Flag *pOverflow ) argument
H A Dlpc.cpp444 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1], rc);
451 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc);
460 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc);
488 lpcState *st, /* i/o: State struct */
508 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1], rc, pOverflow);
515 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc, pOverflow);
524 Levinson(st->levinsonSt, rHigh, rLow, &a[MP1 * 3], rc, pOverflow);
487 lpc( lpcState *st, enum Mode mode, Word16 x[], Word16 x_12k2[], Word16 a[], Flag *pOverflow ) argument
H A Dsp_enc.h121 Stores pointer to filter status struct in *st. This pointer has to
138 Speech_Encode_FrameState *st, /* i/o : post filter states */
/frameworks/native/libs/gui/tests/
H A DTextureRenderer.h30 TextureRenderer(GLuint texName, const sp<GLConsumer>& st);
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dmime_io.cpp534 RX_State_wb *st)
708 *mode = st->prev_mode;
712 *mode = st->prev_mode;
716 *mode = st->prev_mode;
720 *mode = st->prev_mode;
724 st->prev_mode = *mode;
529 mime_unsorting(uint8 unsorted_bits[], int16 sorted_bits_into_int16[], int16 * frame_type, int16 * mode, uint8 quality, RX_State_wb *st) argument
/frameworks/compile/mclinker/lib/Support/
H A DDirectory.cpp43 Directory::Directory(const Path& pPath, FileStatus st, FileStatus symlink_st) argument
45 m_FileStatus(st),
56 Directory::Directory(const char* pPath, FileStatus st, FileStatus symlink_st) argument
57 : Directory(sys::fs::Path(pPath), st, symlink_st) {
84 FileStatus st,
94 m_FileStatus = st;
83 assign(const Path& pPath, FileStatus st, FileStatus symlink_st) argument
/frameworks/base/core/java/android/text/style/
H A DIconMarginSpan.java45 int st = ((Spanned) text).getSpanStart(this);
46 int itop = layout.getLineTop(layout.getLineForOffset(st));
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRotateDrawable.java149 final RotateState st = mState;
150 final float px = st.mPivotXRel ? (w * st.mPivotX) : st.mPivotX;
151 final float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY;
154 canvas.rotate(st.mCurrentDegrees, px + bounds.left, py + bounds.top);
H A DAnimatedRotateDrawable.java63 final AnimatedRotateState st = mState;
64 final float px = st.mPivotXRel ? (w * st.mPivotX) : st.mPivotX;
65 final float py = st.mPivotYRel ? (h * st.mPivotY) : st.mPivotY;
/frameworks/base/cmds/idmap/
H A Dcreate.cpp78 struct stat st; local
79 if (fstat(idmap_fd, &st) == -1) {
82 if (st.st_size < static_cast<off_t>(N)) {
137 struct stat st; local
138 if (stat(idmap_path, &st) == -1) {
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java112 long getFreeStorageBlks(StatFs st) { argument
113 st.restat("/data");
114 return st.getFreeBlocks();
117 long getFreeStorageSize(StatFs st) { argument
118 st.restat("/data");
119 return (long) st.getFreeBlocks() * (long) st.getBlockSize();
125 StatFs st = new StatFs("/data");
126 long blks1 = getFreeStorageBlks(st);
127 long availableMem = getFreeStorageSize(st);
[all...]
/frameworks/native/cmds/rawbu/
H A Dbackup.cpp236 static int write_header(FILE* fh, int type, const char* path, const struct stat* st) argument
246 if (!write_int32(fh, st->st_uid)) return 0;
247 if (!write_int32(fh, st->st_gid)) return 0;
248 if (!write_int32(fh, st->st_mode)) return 0;
249 if (!write_int64(fh, ((int64_t)st->st_atime)*1000*1000*1000)) return 0;
250 if (!write_int64(fh, ((int64_t)st->st_mtime)*1000*1000*1000)) return 0;
251 if (!write_int64(fh, ((int64_t)st->st_ctime)*1000*1000*1000)) return 0;
438 static int read_header(FILE* fh, int* type, char** path, struct stat* st) argument
464 st->st_uid = read_int32(fh, -1);
465 if (st
[all...]
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java153 int st = sp.getSpanStart(TextKeyListener.ACTIVE);
156 if (i >= st && i < en) {
164 st = sp.getSpanStart(visible[a]);
167 if (i >= st && i < en) {
191 int st = -1, en = -1;
198 st = sp.getSpanStart(TextKeyListener.ACTIVE);
215 if (! (i >= st && i < en)) {
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp113 struct stat st; local
114 if (stat(path, &st) == 0 && S_ISREG(st.st_mode)) {
/frameworks/base/graphics/java/android/graphics/
H A DSurfaceTexture.java372 SurfaceTexture st = weakSelf.get();
373 if (st != null) {
374 Handler handler = st.mOnFrameAvailableHandler;
/frameworks/compile/mclinker/include/mcld/Support/
H A DDirectory.h49 FileStatus st = FileStatus(),
53 FileStatus st = FileStatus(),
69 FileStatus st = FileStatus(),
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dbits.h81 int PackBits(Word16 prms[], Word16 coding_mode, Word16 mode, Coder_State *st);
/frameworks/native/include/binder/
H A DBufferedTextOutput.h52 static void threadDestructor(void *st);

Completed in 464 milliseconds

1234567