/external/junit/src/org/junit/internal/ |
TextListener.java | 17 this(system.out());
|
/external/libopus/celt/ |
opus_custom_demo.c | 25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 61 opus_int16 *in, *out; local 129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16)); 168 ret = opus_custom_decode(dec, NULL, len, out, frame_size); 170 ret = opus_custom_decode(dec, data, len, out, frame_size); 175 out[i] = in[i]; 180 rmsd += (in[i]-out[i])*1.0*(in[i]-out[i]); 181 /*out[i] -= in[i];*/ 185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout) [all...] |
/external/libopus/celt/tests/ |
test_unit_dft.c | 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 54 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse) 82 difr = ansr - out[bin].r; 83 difi = ansi - out[bin].i; 100 kiss_fft_cpx * out= (kiss_fft_cpx*)malloc(buflen); local 125 opus_ifft(cfg,in,out); 127 opus_fft(cfg,in,out); 129 /*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/ 131 check(in,out,nfft,isinverse) [all...] |
test_unit_mdct.c | 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 54 void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse) 71 /*printf ("%f %f\n", ansr, out[bin]);*/ 72 difr = ansr - out[bin]; 84 void check_inv(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse) 101 /*printf ("%f %f\n", ansr, out[bin]);*/ 102 difr = ansr - out[bin]; 122 kiss_fft_scalar * out= (kiss_fft_scalar*)malloc(buflen); local 152 out[k] = 0; 153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1) [all...] |
/external/libopus/doc/ |
trivial_example.c | 23 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS]; local 138 frame_size = opus_decode(decoder, cbits, nbBytes, out, MAX_FRAME_SIZE, 0); 148 pcm_bytes[2*i]=out[i]&0xFF; 149 pcm_bytes[2*i+1]=(out[i]>>8)&0xFF;
|
/external/libpng/ |
pngwtran.c | 229 unsigned int v, out; local 232 out = 0; 237 out |= v << j; 240 out |= (v >> (-j)) & mask; 243 *bp = (png_byte)(out & 0xff); 258 unsigned int v, out; local 261 out = 0; 266 out |= v << j; 269 out |= v >> (-j); 272 *bp = (png_byte)(out & 0xff) [all...] |
/external/libvpx/libvpx/test/ |
idct8x8_test.cc | 85 double out[64], out2[64]; local 93 out[j + i*8] = temp_out[j]; 99 temp_in[j] = out[j*8 + i];
|
/external/libvpx/libvpx/third_party/libmkv/ |
EbmlWriter.c | 125 signed long out = ((val & 0x003FFFFF) | 0x00200000) << 8; local 126 Ebml_Serialize(glob, &out, sizeof(out), 3);
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
run-command.h | 19 * Using .in, .out, .err: 25 * .out, .err: returns the readable pipe end; parent reads from 31 * .out: a writable FD, becomes child's stdout/stderr 37 int out; member in struct:child_process
|
/external/lzma/xz-embedded/ |
xz.h | 131 * @out: Beginning of the output buffer. This may be NULL if and only 137 * Only the contents of the output buffer from out[out_pos] onward, and 145 uint8_t *out; member in struct:xz_buf 181 * risk that xz_dec_run() could run out of memory, since xz_dec_run() will 192 * system out of memory when decompressing streams from untrusted sources. 210 * contents of the output buffer from b->out[b->out_pos] onward are
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_cliptest_tmp.h | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 33 struct vertex_header *out = info->verts; local 54 float *position = out->data[pos]; 57 initialize_vertex_header(out); 64 clipvertex = out->data[cv]; 67 out->clip[i] = clipvertex[i]; 68 out->pre_clip_pos[i] = position[i]; 113 out->have_clipdist = 1; 116 clipdist = out->data[cd[0]][i]; 118 clipdist = out->data[cd[1]][i-4] [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Attribute.java | 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
236 * @param out where the attributes must be written.
244 final ByteVector out)
249 out.putShort(cw.newUTF8(attr.type)).putInt(b.length);
250 out.putByteArray(b.data, 0, b.length);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
SLConfigDescriptor.java | 81 ByteBuffer out = ByteBuffer.allocate(3);
local 82 IsoTypeWriter.writeUInt8(out, 6);
83 IsoTypeWriter.writeUInt8(out, 1);
84 IsoTypeWriter.writeUInt8(out, predefined);
85 return out;
|
/external/objenesis/tck/src/org/objenesis/tck/ |
CandidateLoader.java | 54 private final PrintStream out; field in class:CandidateLoader.LoggingErrorHandler 57 * @param out Stream in which to log 59 public LoggingErrorHandler(PrintStream out) { 60 this.out = out; 64 out.println("Class not found : " + name);
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
Spdy3Test.java | 97 OkBuffer out = new OkBuffer(); local 98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData); 99 return out;
|
/external/okhttp/okio/src/test/java/okio/ |
OkioTest.java | 35 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 36 Sink sink = Okio.sink(out); 38 assertEquals("abb", out.toString("UTF-8")); 40 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8"));
|
/external/openssl/apps/ |
crl2p7.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 81 * -out arg - output file - default stdout 89 BIO *in=NULL,*out=NULL; local 135 else if (strcmp(*argv,"-out") == 0) 170 BIO_printf(bio_err," -out arg output file\n"); 181 out=BIO_new(BIO_s_file()); 182 if ((in == NULL) || (out == NULL)) 249 BIO_set_fp(out,stdout,BIO_NOCLOSE); 253 out = BIO_push(tmpbio, out) [all...] |
dh.c | 36 * The word 'cryptographic' can be left out if the rouines from the library 51 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 80 * -out arg - output file - default stdout 93 BIO *in=NULL,*out=NULL; local 137 else if (strcmp(*argv,"-out") == 0) 175 BIO_printf(bio_err," -out arg output file\n"); 193 out=BIO_new(BIO_s_file()); 194 if ((in == NULL) || (out == NULL)) 212 BIO_set_fp(out,stdout,BIO_NOCLOSE); 216 out = BIO_push(tmpbio, out) [all...] |
genrsa.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 106 BIO *out=NULL; local 121 if ((out=BIO_new(BIO_s_file())) == NULL) 132 if (strcmp(*argv,"-out") == 0) 214 BIO_printf(bio_err," -out file output the key to 'file\n"); 240 BIO_set_fp(out,stdout,BIO_NOCLOSE); 244 out = BIO_push(tmpbio, out); 250 if (BIO_write_filename(out,outfile) <= 0 [all...] |
pkcs7.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 77 * -out arg - output file - default stdout 87 BIO *in=NULL,*out=NULL; local 130 else if (strcmp(*argv,"-out") == 0) 168 BIO_printf(bio_err," -out arg output file\n"); 186 out=BIO_new(BIO_s_file()); 187 if ((in == NULL) || (out == NULL)) 223 BIO_set_fp(out,stdout,BIO_NOCLOSE); 227 out = BIO_push(tmpbio, out) [all...] |
pkey.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 74 BIO *in = NULL, *out = NULL; local 144 else if (!strcmp (*args, "-out")) 192 BIO_printf(bio_err, "-out file output file\n"); 212 if (!(out = BIO_new_file (outfile, "wb"))) 221 out = BIO_new_fp (stdout, BIO_NOCLOSE); 225 out = BIO_push(tmpbio, out); 244 PEM_write_bio_PUBKEY(out,pkey); 246 PEM_write_bio_PrivateKey(out, pkey, cipher [all...] |
sess_id.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 78 " -out arg - output file - default stdout\n", 95 BIO *out=NULL; local 130 else if (strcmp(*argv,"-out") == 0) 203 out=BIO_new(BIO_s_file()); 204 if (out == NULL) 212 BIO_set_fp(out,stdout,BIO_NOCLOSE); 216 out = BIO_push(tmpbio, out); [all...] |
spkac.c | 51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 77 * -out arg - output file - default stdout 86 BIO *in = NULL,*out = NULL; local 117 else if (strcmp(*argv,"-out") == 0) 171 BIO_printf(bio_err," -out arg output file\n"); 209 if (outfile) out = BIO_new_file(outfile, "w"); 211 out = BIO_new_fp(stdout, BIO_NOCLOSE); 215 out = BIO_push(tmpbio, out); 220 if(!out) { [all...] |
/external/openssl/crypto/des/ |
des_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 82 * for pointing this out. */ 175 * for pointing this out. */ 296 unsigned char *out; local 302 out=output; 322 l2c(tout0,out); 323 l2c(tout1,out); 337 l2c(tout0,out); 338 l2c(tout1,out); [all...] |
/external/openssl/crypto/ecdh/ |
ecdhtest.c | 60 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 109 static void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen) 116 return SHA1(in, inlen, out); 123 static int test_ecdh_curve(int nid, const char *text, BN_CTX *ctx, BIO *out) 146 BIO_puts(out,"Testing key generation with "); 147 BIO_puts(out,text); 149 BIO_puts(out,"\n"); 151 (void)BIO_flush(out); 169 BIO_puts(out," pri 1="); 170 BN_print(out,a->priv_key) 307 BIO *out; local [all...] |