/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);
|