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

1234567891011>>

/external/chromium_org/third_party/ots/test/
H A Dperf.cc38 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
[all...]
H A Dot-sanitise.cc49 struct stat st; local
50 ::fstat(fd, &st);
52 uint8_t *data = new uint8_t[st.st_size];
53 if (::read(fd, data, st.st_size) != st.st_size) {
63 const bool result = ots::Process(&output, data, st.st_size);
/external/libxslt/libxslt/
H A Dimports.h28 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
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_viewport.c42 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
[all...]
H A Dst_atom_clip.c44 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 */
H A Dst_atom_stipple.c65 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 */
H A Dst_debug.c81 struct st_context *st = st_context(ctx); local
87 for (i = 0; i < st->vp->state.num_inputs; i++) {
88 printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
92 if (st->vp->variants)
93 tgsi_dump( st->vp->variants[0].tgsi.tokens, 0 );
94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st
[all...]
H A Dst_cb_condrender.c55 struct st_context *st = st_context(ctx); local
56 struct pipe_context *pipe = st->pipe;
59 st_flush_bitmap_cache(st);
79 st->render_condition = stq->pq;
80 st->condition_mode = m;
92 struct st_context *st = st_context(ctx); local
93 struct pipe_context *pipe = st->pipe;
96 st_flush_bitmap_cache(st);
99 st->render_condition = NULL;
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_clip.c44 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 */
H A Dst_atom_stipple.c65 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 */
H A Dst_debug.c81 struct st_context *st = st_context(ctx); local
87 for (i = 0; i < st->vp->state.num_inputs; i++) {
88 printf(" Slot %d: VERT_ATTRIB_%d\n", i, st->vp->index_to_input[i]);
92 if (st->vp->variants)
93 tgsi_dump( st->vp->variants[0].tgsi.tokens, 0 );
94 if (st->vp->Base.Base.Parameters)
95 _mesa_print_parameter_list(st->vp->Base.Base.Parameters);
97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st
[all...]
H A Dst_cb_condrender.c55 struct st_context *st = st_context(ctx); local
56 struct pipe_context *pipe = st->pipe;
59 st_flush_bitmap_cache(st);
79 st->render_condition = stq->pq;
80 st->condition_mode = m;
92 struct st_context *st = st_context(ctx); local
93 struct pipe_context *pipe = st->pipe;
96 st_flush_bitmap_cache(st);
99 st->render_condition = NULL;
/external/chromium_org/third_party/openssl/openssl/crypto/aes/
H A Daes_locl.h68 # 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/
H A Dx86-64.s181 // 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(
[all...]
/external/openssl/crypto/aes/
H A Daes_locl.h68 # 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/elfutils/libebl/
H A Deblgstrtab.c139 morememory (struct Ebl_GStrtab *st, size_t len) argument
149 newmem->next = st->memory;
150 st->memory = newmem;
151 st->backp = newmem->memory;
152 st->left = len - offsetof (struct memoryblock, memory);
157 ebl_gstrtabfree (struct Ebl_GStrtab *st) argument
159 struct memoryblock *mb = st->memory;
168 if (st->null.string != NULL)
169 free ((char *) st->null.string);
171 free (st);
176 newstring(struct Ebl_GStrtab *st, const char *str, size_t len) argument
242 ebl_gstrtabadd(struct Ebl_GStrtab *st, const char *str, size_t len) argument
351 ebl_gstrtabfinalize(struct Ebl_GStrtab *st, Elf_Data *data) argument
[all...]
H A Deblstrtab.c136 morememory (struct Ebl_Strtab *st, size_t len) argument
145 newmem->next = st->memory;
146 st->memory = newmem;
147 st->backp = newmem->memory;
148 st->left = len - offsetof (struct memoryblock, memory);
155 ebl_strtabfree (struct Ebl_Strtab *st) argument
157 struct memoryblock *mb = st->memory;
166 free (st);
171 newstring (struct Ebl_Strtab *st, const char *str, size_t len) argument
175 - (((uintptr_t) st
234 ebl_strtabadd(struct Ebl_Strtab *st, const char *str, size_t len) argument
331 ebl_strtabfinalize(struct Ebl_Strtab *st, Elf_Data *data) argument
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Dopus_decoder.c98 int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) argument
108 OPUS_CLEAR((char*)st, opus_decoder_get_size(channels));
115 st->silk_dec_offset = align(sizeof(OpusDecoder));
116 st->celt_dec_offset = st->silk_dec_offset+silkDecSizeBytes;
117 silk_dec = (char*)st+st->silk_dec_offset;
118 celt_dec = (CELTDecoder*)((char*)st+st->celt_dec_offset);
119 st
144 OpusDecoder *st; local
202 opus_decode_frame(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
739 opus_decode_native(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec, int self_delimited, int *packet_offset, int soft_clip) argument
860 opus_decode(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
867 opus_decode_float(OpusDecoder *st, const unsigned char *data, opus_int32 len, float *pcm, int frame_size, int decode_fec) argument
889 opus_decode(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_int16 *pcm, int frame_size, int decode_fec) argument
914 opus_decode_float(OpusDecoder *st, const unsigned char *data, opus_int32 len, opus_val16 *pcm, int frame_size, int decode_fec) argument
922 opus_decoder_ctl(OpusDecoder *st, int request, ...) argument
1035 opus_decoder_destroy(OpusDecoder *st) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DSimpleTimeZoneTest.java38 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST");
39 assertEquals("Incorrect TZ constructed", "TEST", st.getID());
40 assertTrue("Incorrect TZ constructed: " + "returned wrong offset", st
42 assertTrue("Incorrect TZ constructed" + "using daylight savings", !st
53 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST", Calendar.NOVEMBER,
56 assertTrue("Incorrect TZ constructed", st
59 assertTrue("Incorrect TZ constructed", !(st
62 assertEquals("Incorrect TZ constructed", "TEST", st.getID());
63 assertEquals("Incorrect TZ constructed", 1000, st.getRawOffset());
64 assertTrue("Incorrect TZ constructed", st
[all...]
/external/speex/libspeex/
H A Dkiss_fftr.c35 kiss_fftr_cfg st = NULL; local
48 st = (kiss_fftr_cfg) KISS_FFT_MALLOC (memneeded);
51 st = (kiss_fftr_cfg) mem;
54 if (!st)
57 st->substate = (kiss_fft_cfg) (st + 1); /*just beyond kiss_fftr_state struct */
58 st->tmpbuf = (kiss_fft_cpx *) (((char *) st->substate) + subsize);
59 st->super_twiddles = st
81 kiss_fftr(kiss_fftr_cfg st,const kiss_fft_scalar *timedata,kiss_fft_cpx *freqdata) argument
136 kiss_fftri(kiss_fftr_cfg st,const kiss_fft_cpx *freqdata, kiss_fft_scalar *timedata) argument
173 kiss_fftr2(kiss_fftr_cfg st,const kiss_fft_scalar *timedata,kiss_fft_scalar *freqdata) argument
261 kiss_fftri2(kiss_fftr_cfg st,const kiss_fft_scalar *freqdata,kiss_fft_scalar *timedata) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DToolMessage.java62 ST st = getMessageTemplate();
64 st.add("arg", arg);
67 st.add("arg2", arg2);
70 st.add("exception", e);
71 st.add("stackTrace", e.getStackTrace());
73 return super.toString(st);
/external/clang/test/Sema/
H A Dstruct-decl.c14 struct st { struct in struct:s
19 struct st;
22 struct st *f;
/external/clang/test/Analysis/diagnostics/
H A Dundef-value-param.c58 struct WithFields st; local
59 st.f1 = 0; // expected-note {{Null pointer value stored to 'st.f1'}}
60 initStruct(x, &st); //expected-note {{Calling 'initStruct'}}
62 return (*st.f1); //expected-warning {{Dereference of null pointer}}
827 // CHECK-NEXT: <string>Null pointer value stored to &apos;st.f1&apos;</string>
829 // CHECK-NEXT: <string>Null pointer value stored to &apos;st.f1&apos;</string>
/external/speex/include/speex/
H A Dspeex_echo.h89 * @param st Echo canceller state
91 void speex_echo_state_destroy(SpeexEchoState *st);
96 * @param st Echo canceller state
101 void speex_echo_cancellation(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out);
104 void speex_echo_cancel(SpeexEchoState *st, const spx_int16_t *rec, const spx_int16_t *play, spx_int16_t *out, spx_int32_t *Yout);
108 * @param st Echo canceller state
112 void speex_echo_capture(SpeexEchoState *st, const spx_int16_t *rec, spx_int16_t *out);
115 * @param st Echo canceller state
118 void speex_echo_playback(SpeexEchoState *st, const spx_int16_t *play);
121 * @param st Ech
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dcelt_encoder.c150 CELTEncoder *st = (CELTEncoder *)opus_alloc(opus_custom_encoder_get_size(mode, channels)); local
152 ret = opus_custom_encoder_init(st, mode, channels);
155 opus_custom_encoder_destroy(st);
156 st = NULL;
160 return st;
164 int celt_encoder_init(CELTEncoder *st, opus_int32 sampling_rate, int channels) argument
167 ret = opus_custom_encoder_init(st, opus_custom_mode_create(48000, 960, NULL), channels);
170 st->upsample = resampling_factor(sampling_rate);
174 OPUS_CUSTOM_NOSTATIC int opus_custom_encoder_init(CELTEncoder *st, const CELTMode *mode, int channels) argument
179 if (st
210 opus_custom_encoder_destroy(CELTEncoder *st) argument
995 run_prefilter(CELTEncoder *st, celt_sig *in, celt_sig *prefilter_mem, int CC, int N, int prefilter_tapset, int *pitch, opus_val16 *gain, int *qgain, int enabled, int nbAvailableBytes) argument
1234 celt_encode_with_ec(CELTEncoder * OPUS_RESTRICT st, const opus_val16 * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes, ec_enc *enc) argument
2087 opus_custom_encode(CELTEncoder * OPUS_RESTRICT st, const opus_int16 * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes) argument
2093 opus_custom_encode_float(CELTEncoder * OPUS_RESTRICT st, const float * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes) argument
2120 opus_custom_encode(CELTEncoder * OPUS_RESTRICT st, const opus_int16 * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes) argument
2145 opus_custom_encode_float(CELTEncoder * OPUS_RESTRICT st, const float * pcm, int frame_size, unsigned char *compressed, int nbCompressedBytes) argument
2154 opus_custom_encoder_ctl(CELTEncoder * OPUS_RESTRICT st, int request, ...) argument
[all...]

Completed in 815 milliseconds

1234567891011>>