HomeSort by relevance Sort by last modified time
    Searched refs:st (Results 101 - 125 of 1640) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
pre_proc.h 88 Word16 Pre_Process_init(Pre_ProcessState **st);
90 Stores pointer to filter status struct in *st. This pointer has to
95 Word16 Pre_Process_reset(Pre_ProcessState *st);
99 void Pre_Process_exit(Pre_ProcessState **st);
101 stores NULL in *st
105 Pre_ProcessState *st,
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_program.c 58 struct st_context *st = st_context(ctx); local
62 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
65 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
68 st->dirty.st |= ST_NEW_GEOMETRY_PROGRAM;
81 struct st_context *st = st_context(ctx); local
83 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM
126 struct st_context *st = st_context(ctx); local
196 struct st_context *st = st_context(ctx); local
    [all...]
st_atom_viewport.c 42 update_viewport( struct st_context *st )
44 struct gl_context *ctx = st->ctx;
72 st->state.viewport.scale[0] = half_width;
73 st->state.viewport.scale[1] = half_height * yScale;
74 st->state.viewport.scale[2] = half_depth;
75 st->state.viewport.scale[3] = 1.0;
77 st->state.viewport.translate[0] = half_width + x;
78 st->state.viewport.translate[1] = (half_height + y) * yScale + yBias;
79 st->state.viewport.translate[2] = half_depth + z;
80 st->state.viewport.translate[3] = 0.0
    [all...]
st_atom_clip.c 44 static void update_clip( struct st_context *st )
47 const struct gl_context *ctx = st->ctx;
54 if (st->vp) {
62 st->state.clip = clip;
63 cso_set_clip(st->cso_context, &clip);
71 0, /* st */
st_atom_stipple.c 65 update_stipple( struct st_context *st )
67 const struct gl_context *ctx = st->ctx;
68 const GLuint sz = sizeof(st->state.poly_stipple);
71 if (memcmp(st->state.poly_stipple, ctx->PolygonStipple, sz)) {
75 memcpy(st->state.poly_stipple, ctx->PolygonStipple, sz);
80 st->pipe->set_polygon_stipple(st->pipe, &newStipple);
91 0, /* st */
  /external/mesa3d/src/mesa/state_tracker/
st_cb_program.c 58 struct st_context *st = st_context(ctx); local
62 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
65 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
68 st->dirty.st |= ST_NEW_GEOMETRY_PROGRAM;
81 struct st_context *st = st_context(ctx); local
83 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM
126 struct st_context *st = st_context(ctx); local
196 struct st_context *st = st_context(ctx); local
    [all...]
st_atom_viewport.c 42 update_viewport( struct st_context *st )
44 struct gl_context *ctx = st->ctx;
72 st->state.viewport.scale[0] = half_width;
73 st->state.viewport.scale[1] = half_height * yScale;
74 st->state.viewport.scale[2] = half_depth;
75 st->state.viewport.scale[3] = 1.0;
77 st->state.viewport.translate[0] = half_width + x;
78 st->state.viewport.translate[1] = (half_height + y) * yScale + yBias;
79 st->state.viewport.translate[2] = half_depth + z;
80 st->state.viewport.translate[3] = 0.0
    [all...]
st_atom_clip.c 44 static void update_clip( struct st_context *st )
47 const struct gl_context *ctx = st->ctx;
54 if (st->vp) {
62 st->state.clip = clip;
63 cso_set_clip(st->cso_context, &clip);
71 0, /* st */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
dtx.c 46 dtx_encState * st
50 dtx_encState * st
72 Word16 dtx_enc_init(dtx_encState ** st, Word16 isf_init[], VO_MEM_OPERATOR *pMemOP)
76 if (st == (dtx_encState **) NULL)
81 *st = NULL;
90 *st = s;
99 Word16 dtx_enc_reset(dtx_encState * st, Word16 isf_init[])
103 if (st == (dtx_encState *) NULL)
108 st->hist_ptr = 0;
109 st->log_en_index = 0
    [all...]
wb_vad.c 179 VadVars * st, /* i/o : State struct */
196 filter5(&tmp_buf[2 * i], &tmp_buf[2 * i + 1], st->a_data5[0]);
200 filter5(&tmp_buf[4 * i], &tmp_buf[4 * i + 2], st->a_data5[1]);
201 filter5(&tmp_buf[4 * i + 1], &tmp_buf[4 * i + 3], st->a_data5[2]);
205 filter5(&tmp_buf[8 * i], &tmp_buf[8 * i + 4], st->a_data5[3]);
206 filter5(&tmp_buf[8 * i + 2], &tmp_buf[8 * i + 6], st->a_data5[4]);
207 filter3(&tmp_buf[8 * i + 3], &tmp_buf[8 * i + 7], &st->a_data3[0]);
211 filter3(&tmp_buf[16 * i + 0], &tmp_buf[16 * i + 8], &st->a_data3[1]);
212 filter3(&tmp_buf[16 * i + 4], &tmp_buf[16 * i + 12], &st->a_data3[2]);
213 filter3(&tmp_buf[16 * i + 6], &tmp_buf[16 * i + 14], &st->a_data3[3])
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
remove.c 42 struct stat st; local
44 if (lstat(file, &st) < 0)
46 if (S_ISDIR(st.st_mode))
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 30 import org.stringtemplate.v4.ST;
47 ST st = getMessageTemplate(); local
48 st.add("listOfCycles", cycles);
49 return super.toString(st);
  /external/chromium_org/third_party/libxslt/libxslt/
imports.h 28 xsltStylesheetPtr st = style; \
30 while (st != NULL) { \
31 if (st->name != NULL) { res = st->name; break; } \
32 st = xsltNextImport(st); \
41 xsltStylesheetPtr st = style; \
43 while (st != NULL) { \
44 if (st->name != -1) { res = st->name; break; }
    [all...]
  /external/chromium_org/third_party/ots/test/
perf.cc 38 struct stat st; local
39 ::fstat(fd, &st);
41 uint8_t *data = new uint8_t[st.st_size];
42 if (::read(fd, data, st.st_size) != st.st_size) {
51 uint8_t *result = new uint8_t[st.st_size + kPadLen];
54 if (st.st_size < 1024 * 1024) {
57 if (st.st_size < 1024 * 100) {
64 ots::MemoryStream output(result, st.st_size + kPadLen);
65 bool r = ots::Process(&output, data, st.st_size)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
preemph.h 114 Word16 preemphasis_reset(preemphasisState *st);
118 void preemphasis_exit(preemphasisState **st);
120 stores NULL in *st
124 preemphasisState *st, /* (i/o): preemphasis filter state */
bgnscd.cpp 190 st = pointer to state variables of type Bgn_scdState
197 st = function updates the state variables of type Bgn_scdState
198 pointed to by st.
231 Word16 Bgn_scd (Bgn_scdState *st, // i : State variables for bgn SCD
265 if (sub(st->frameEnergyHist[i], frameEnergyMin) < 0)
266 frameEnergyMin = st->frameEnergyHist[i];
271 maxEnergy = st->frameEnergyHist[0];
274 if ( sub (maxEnergy, st->frameEnergyHist[i]) < 0)
276 maxEnergy = st->frameEnergyHist[i];
280 maxEnergyLastPart = st->frameEnergyHist[2*L_ENERGYHIST/3]
    [all...]
  /external/f2fs-tools/tools/
fibmap.c 32 void print_stat(struct stat64 *st)
35 printf("dev [%d:%d]\n", major(st->st_dev), minor(st->st_dev));
36 printf("ino [0x%8lx : %ld]\n", st->st_ino, st->st_ino);
37 printf("mode [0x%8x : %d]\n", st->st_mode, st->st_mode);
38 printf("nlink [0x%8lx : %ld]\n", st->st_nlink, st->st_nlink);
39 printf("uid [0x%8x : %d]\n", st->st_uid, st->st_uid)
88 struct stat64 st; local
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 39 StreamTokenizer st = new StreamTokenizer(r); local
42 st.resetSyntax();
50 st.wordChars('0', '9');
51 st.wordChars('A', 'Z');
52 st.wordChars('a', 'z');
53 st.wordChars('_', '_');
54 st.wordChars('$', '$');
55 st.wordChars('.', '.');
56 st.wordChars('-', '-');
57 st.wordChars('+', '+')
142 final StreamTokenizer st = initTokenizer(r); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
d_plsf.h 120 Word16 D_plsf_reset(D_plsfState *st);
127 * Description : Stores NULL in *st
132 void D_plsf_exit(D_plsfState **st);
141 * 5 matrix quantization (split-MQ) with 1st order MA
150 D_plsfState *st, /* i/o: State variables */
154 Word16 *lsp1_q, /* o : quantized 1st LSP vector (M) Q15 */
164 * indices.1st order MA prediction and split by 3 matrix
170 D_plsfState *st, /* i/o: State struct */
175 Word16 * lsp1_q, /* o : quantized 1st LSP vector, Q15 */
187 void Init_D_plsf_3(D_plsfState *st, /* i/o: State struct *
    [all...]
gc_pred.h 108 Word16 gc_pred_reset(gc_predState *st);
112 void gc_pred_exit(gc_predState **st);
114 stores NULL in *st
129 gc_predState *st, /* i/o: State struct */
147 gc_predState *st, /* i/o: State struct */
160 gc_predState *st, /* i: State struct */
  /frameworks/base/core/jni/
android_util_XmlBlock.cpp 83 ResXMLParser* st = new ResXMLParser(*osb); local
84 if (st == NULL) {
89 st->restart();
91 return reinterpret_cast<jlong>(st);
97 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
98 if (st == NULL) {
103 ResXMLParser::event_code_t code = st->next();
131 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
132 if (st == NULL) {
136 return static_cast<jint>(st->getElementNamespaceID())
142 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
153 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
164 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
176 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
188 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
200 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
212 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
224 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
236 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
248 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
261 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
290 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
303 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
316 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
340 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
stat.h 77 struct _stat64 st; local
78 int ret=_fstat64(_FileDes,&st);
83 _Stat->st_dev=st.st_dev;
84 _Stat->st_ino=st.st_ino;
85 _Stat->st_mode=st.st_mode;
86 _Stat->st_nlink=st.st_nlink;
87 _Stat->st_uid=st.st_uid;
88 _Stat->st_gid=st.st_gid;
89 _Stat->st_rdev=st.st_rdev;
90 _Stat->st_size=(_off_t) st.st_size
103 struct _stat64 st; local
172 struct _stat32 st; local
202 struct _stat64 st; local
    [all...]
  /system/core/toolbox/
df.c 31 struct statfs st; local
33 if (statfs(s, &st) < 0) {
37 if (st.f_blocks == 0 && !always)
40 printsize((long long)st.f_blocks * (long long)st.f_bsize);
42 printsize((long long)(st.f_blocks - (long long)st.f_bfree) * st.f_bsize);
44 printsize((long long)st.f_bfree * (long long)st.f_bsize)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/aes/
aes_locl.h 68 # define PUTU32(ct, st) { *((u32 *)(ct)) = SWAP((st)); }
71 # define PUTU32(ct, st) { (ct)[0] = (u8)((st) >> 24); (ct)[1] = (u8)((st) >> 16); (ct)[2] = (u8)((st) >> 8); (ct)[3] = (u8)(st); }
  /external/llvm/test/MC/X86/
x86-64.s 181 // CHECK: fadd %st(0)
182 // CHECK: fadd %st(1)
183 // CHECK: fadd %st(7)
185 fadd %st(0)
186 fadd %st(1)
187 fadd %st(7)
286 // CHECK: fxch %st(1)
287 // CHECK: fucom %st(1)
288 // CHECK: fucomp %st(1)
289 // CHECK: faddp %st(1
    [all...]

Completed in 1022 milliseconds

1 2 3 45 6 7 8 91011>>