Searched defs:out (Results 301 - 325 of 2458) sorted by relevance

<<11121314151617181920>>

/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/
H A DStyleEscapeFunction.java24 * This function will be used to sanitize variables in 'style' attributes. It strips out any
29 * characters to escape. The StyleAttrEscapeFunction instead applies a whitelist, and strips out any
81 public void filter(String in, Appendable out) throws IOException { argument
84 out.append(c);
86 out.append(c);
93 System.out.println(i + "(" + (char) i + ")" + " :" + VALID_CHARS[i]);
H A DUrlEscapeFunction.java46 public void filter(String in, Appendable out) throws IOException { argument
48 out.append(URLEncoder.encode(in, encoding));
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DBaseUrlValidateFunction.java41 public void filter(String in, Appendable out) throws IOException { argument
43 out.append('#');
46 applyEscaping(in, out);
55 protected abstract void applyEscaping(String in, Appendable out) throws IOException; argument
H A DHtmlUrlValidateFunction.java41 protected void applyEscaping(String in, Appendable out) throws IOException { argument
42 htmlEscape.filter(in, out);
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DTemplate.java34 * @param out Target to write to.
38 void render(Data data, Appendable out, ResourceLoader resourceLoader) throws IOException; argument
51 * @param out Target to write to.
54 RenderingContext createRenderingContext(Data data, Appendable out, ResourceLoader resourceLoader); argument
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
H A Dsputc.pass.cpp53 char out[3] = {0}; local
54 t.setp(out, out+sizeof(out));
57 assert(out[0] == 'A');
60 assert(out[0] == 'A');
61 assert(out[1] == 'B');
/external/libopus/silk/
H A DLPC_analysis_filter.c43 opus_int16 *out, /* O Output signal */
72 celt_fir( in + d, num, out + d, len - d, d, mem );
74 out[ j ] = 0;
100 out[ ix ] = (opus_int16)silk_SAT16( out32 );
104 silk_memset( out, 0, d * sizeof( opus_int16 ) );
42 silk_LPC_analysis_filter( opus_int16 *out, const opus_int16 *in, const opus_int16 *B, const opus_int32 len, const opus_int32 d ) argument
H A Dbiquad_alt.c47 opus_int16 *out, /* O output signal */
76 out[ k * stride ] = (opus_int16)silk_SAT16( silk_RSHIFT( out32_Q14 + (1<<14) - 1, 14 ) );
42 silk_biquad_alt( const opus_int16 *in, const opus_int32 *B_Q28, const opus_int32 *A_Q28, opus_int32 *S, opus_int16 *out, const opus_int32 len, opus_int stride ) argument
H A Dresampler.c54 /* in \ out 8 12 16 */
63 /* in \ out 8 12 16 24 48 */
176 opus_int16 out[], /* O Output signal */
195 silk_resampler_private_up2_HQ_wrapper( S, out, S->delayBuf, S->Fs_in_kHz );
196 silk_resampler_private_up2_HQ_wrapper( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
199 silk_resampler_private_IIR_FIR( S, out, S->delayBuf, S->Fs_in_kHz );
200 silk_resampler_private_IIR_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
203 silk_resampler_private_down_FIR( S, out, S->delayBuf, S->Fs_in_kHz );
204 silk_resampler_private_down_FIR( S, &out[ S->Fs_out_kHz ], &in[ nSamples ], inLen - S->Fs_in_kHz );
207 silk_memcpy( out,
174 silk_resampler( silk_resampler_state_struct *S, opus_int16 out[], const opus_int16 in[], opus_int32 inLen ) argument
[all...]
H A Dresampler_private_IIR_FIR.c37 opus_int16 *out,
60 *out++ = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( res_Q15, 15 ) );
62 return out;
67 opus_int16 out[], /* O Output signal */
92 out = silk_resampler_private_IIR_FIR_INTERPOL( out, buf, max_index_Q16, index_increment_Q16 );
36 silk_resampler_private_IIR_FIR_INTERPOL( opus_int16 *out, opus_int16 *buf, opus_int32 max_index_Q16, opus_int32 index_increment_Q16 ) argument
65 silk_resampler_private_IIR_FIR( void *SS, opus_int16 out[], const opus_int16 in[], opus_int32 inLen ) argument
H A Dresampler_private_up2_HQ.c40 opus_int16 *out, /* O Output signal [ 2 * len ] */
79 out[ 2 * k ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( out32_1, 10 ) );
100 out[ 2 * k + 1 ] = (opus_int16)silk_SAT16( silk_RSHIFT_ROUND( out32_1, 10 ) );
106 opus_int16 *out, /* O Output signal [ 2 * len ] */
112 silk_resampler_private_up2_HQ( S->sIIR, out, in, len );
38 silk_resampler_private_up2_HQ( opus_int32 *S, opus_int16 *out, const opus_int16 *in, opus_int32 len ) argument
104 silk_resampler_private_up2_HQ_wrapper( void *SS, opus_int16 *out, const opus_int16 *in, opus_int32 len ) argument
/external/libopus/silk/float/
H A DSigProc_FLP.h170 opus_int16 *out,
177 out[k] = silk_SAT16( (opus_int32)float2int( in[k] ) );
183 silk_float *out,
190 out[k] = (silk_float)in[k];
169 silk_float2short_array( opus_int16 *out, const silk_float *in, opus_int32 length ) argument
182 silk_short2float_array( silk_float *out, const opus_int16 *in, opus_int32 length ) argument
/external/libopus/src/
H A Dmlp.c93 void mlp_process(const MLP *m, const opus_val16 *in, opus_val16 *out)
113 out[j] = tansig_approx(EXTRACT16(PSHR32(sum,17)));
117 void mlp_process(const MLP *m, const float *in, float *out) argument
137 out[j] = tansig_approx(sum);
/external/libopus/tests/
H A Dtest_opus_padding.c49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); local
52 if (!in || !out) {
53 fprintf(stderr, "FAIL (out of memory)\n");
62 result = opus_decode(decoder, in, PACKETSIZE, out, FRAMESIZE, 0);
66 free(out);
/external/llvm/
H A Dllvm-device-build.mk72 define transform-device-td-to-out
H A Dllvm-host-build.mk59 define transform-host-td-to-out
/external/llvm/tools/opt/
H A DBreakpointPrinter.cpp30 BreakpointPrinter(raw_ostream &out) : ModulePass(ID), Out(out) {} argument
80 ModulePass *llvm::createBreakpointPrinter(raw_ostream &out) { argument
81 return new BreakpointPrinter(out);
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_dump.cpp33 std::ostream& operator <<(std::ostream& out, const sm4_op& op) argument
36 out << '-';
38 out << '|';
41 out << "l(";
45 out << ", ";
46 out << op.imm_values[i].f32;
48 out << ")";
52 out << "d(";
56 out << ", ";
57 out << o
133 operator <<(std::ostream& out, const sm4_dcl& dcl) argument
179 operator <<(std::ostream& out, const sm4_insn& insn) argument
193 operator <<(std::ostream& out, const sm4_program& program) argument
[all...]
/external/mesa3d/src/mesa/math/
H A Dm_dotprod_tmp.h33 static void TAG(dotprod_vec2)( GLfloat *out, argument
46 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
47 *out = (coord[0] * plane0 +
53 static void TAG(dotprod_vec3)( GLfloat *out, argument
67 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
68 *out = (coord[0] * plane0 +
75 static void TAG(dotprod_vec4)( GLfloat *out, argument
88 for (i=0;i<count;i++,STRIDE_F(coord,stride),STRIDE_F(out,outstride)) {
89 *out = (coord[0] * plane0 +
/external/mockito/src/org/mockito/internal/debugging/
H A DMockitoDebuggerImpl.java22 String out = "";
24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
37 return print(out);
39 out += line("********************************");
40 out
54 print(String out) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
H A DScalingList.java40 public void write(CAVLCWriter out) throws IOException { argument
42 out.writeSE(0, "SPS: ");
51 out.writeSE(deltaScale, "SPS: ");
/external/nanopb-c/examples/using_double_on_avr/
H A Ddouble_conversion.c67 conversion_t out; local
116 out.i = mantissa;
117 out.i |= (uint32_t)(exponent + 127) << 23;
118 out.i |= (uint32_t)sign << 31;
120 return out.f;
/external/openssl/apps/
H A Dnseq.c73 BIO *in = NULL, *out = NULL; local
89 } else if (!strcmp (*args, "-out")) {
103 BIO_printf (bio_err, "-out file output file\n");
117 if (!(out = BIO_new_file (outfile, "w"))) {
123 out = BIO_new_fp(stdout, BIO_NOCLOSE);
127 out = BIO_push(tmpbio, out);
143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq);
156 dump_cert_text(out, x509);
157 PEM_write_bio_X509(out, x50
[all...]
H A Dpkeyparam.c72 BIO *in = NULL, *out = NULL; local
101 else if (!strcmp (*args, "-out"))
133 BIO_printf(bio_err, "-out file output file\n");
160 if (!(out = BIO_new_file (outfile, "w")))
169 out = BIO_new_fp (stdout, BIO_NOCLOSE);
173 out = BIO_push(tmpbio, out);
187 PEM_write_bio_Parameters(out,pkey);
190 EVP_PKEY_print_params(out, pkey, 0, NULL);
196 BIO_free_all(out);
[all...]
/external/openssl/crypto/asn1/
H A Da_i2d_fp.c35 * The word 'cryptographic' can be left out if the rouines from the library
67 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) argument
77 BIO_set_fp(b,out,BIO_NOCLOSE);
84 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) argument
103 i=BIO_write(out,&(b[j]),n);
120 int ASN1_item_i2d_fp(const ASN1_ITEM *it, FILE *out, void *x) argument
130 BIO_set_fp(b,out,BIO_NOCLOSE);
137 int ASN1_item_i2d_bio(const ASN1_ITEM *it, BIO *out, void *x) argument
151 i=BIO_write(out,&(b[j]),n);

Completed in 393 milliseconds

<<11121314151617181920>>