HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 876 - 900 of 5424) sorted by null

<<31323334353637383940>>

  /external/libmojo/base/trace_event/
trace_event_android.cc 51 std::string out = StringPrintf("%c|%d|%s", phase, getpid(), name); local
53 StringAppendF(&out, "-%" PRIx64, static_cast<uint64_t>(id));
54 out += '|';
59 out += ';';
60 out += arg_names[i];
61 out += '=';
62 std::string::size_type value_start = out.length();
64 convertable_values[i]->AppendAsTraceFormat(&out);
66 TraceEvent::AppendValueAsJSON(arg_types[i], arg_values[i], &out);
69 ReplaceSubstringsAfterOffset(&out, value_start, "\\\"", "'")
180 std::string out = base::StringPrintf( local
    [all...]
  /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
71 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
99 difr = ansr - out[bin].r;
100 difi = ansi - out[bin].i;
117 kiss_fft_cpx * out= (kiss_fft_cpx*)malloc(buflen); local
142 opus_ifft(cfg,in,out, arch);
144 opus_fft(cfg,in,out, arch);
146 /*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/
148 check(in,out,nfft,isinverse)
    [all...]
test_unit_mdct.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
70 void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
87 /*printf ("%f %f\n", ansr, out[bin]);*/
88 difr = ansr - out[bin];
100 void check_inv(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
117 /*printf ("%f %f\n", ansr, out[bin]);*/
118 difr = ansr - out[bin];
138 kiss_fft_scalar * out= (kiss_fft_scalar*)malloc(buflen); local
168 out[k] = 0;
169 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1, arch)
    [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/libopus/silk/arm/
NSQ_neon.c 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
64 opus_int32 out = vget_lane_s32(vreinterpret_s32_s64(f), 0); local
66 out += silk_RSHIFT( order, 1 );
68 return out;
74 opus_int32 out; local
106 out = vget_lane_s32(d, 0);
109 return out;
  /external/libpng/
pngwtran.c 231 unsigned int v, out; local
234 out = 0;
239 out |= v << j;
242 out |= (v >> (-j)) & mask;
245 *bp = (png_byte)(out & 0xff);
260 unsigned int v, out; local
263 out = 0;
268 out |= v << j;
271 out |= v >> (-j);
274 *bp = (png_byte)(out & 0xff)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_idct16x16_add_sse2.c 19 tran_low_t out[16 * 16]; local
20 tran_low_t *outptr = out;
119 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i];
131 tran_low_t out[16 * 16] = { 0 }; local
132 tran_low_t *outptr = out;
236 for (j = 0; j < 16; ++j) temp_in[j] = out[j * 16 + i];
highbd_idct4x4_add_sse2.c 19 tran_low_t out[4 * 4]; local
20 tran_low_t *outptr = out;
121 for (j = 0; j < 4; ++j) temp_in[j] = out[j * 4 + i];
138 tran_low_t out; local
141 out = HIGHBD_WRAPLOW(dct_const_round_shift(input[0] * cospi_16_64), bd);
142 out = HIGHBD_WRAPLOW(dct_const_round_shift(out * cospi_16_64), bd);
143 a1 = ROUND_POWER_OF_TWO(out, 4);
highbd_idct8x8_add_sse2.c 19 tran_low_t out[8 * 8]; local
20 tran_low_t *outptr = out;
106 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
118 tran_low_t out[8 * 8] = { 0 }; local
119 tran_low_t *outptr = out;
208 for (j = 0; j < 8; ++j) temp_in[j] = out[j * 8 + i];
  /external/libxml2/
testC14N.c 199 xmlChar **out = NULL; local
221 out = buffer;
224 if (out - buffer > buffer_size - 10) {
225 int indx = out - buffer;
228 out = &buffer[indx];
230 (*out++) = str;
234 (*out) = NULL;
  /external/ltp/testcases/open_posix_testsuite/functional/semaphores/
sem_conpro.c 36 int in, out; variable
82 data = buf->buffer[out];
83 printf("consumer has taken %d from buffer[%d] \n", data, out);
84 out = (out + 1) % BUF_SIZE;
122 in = out = 0;
  /external/ltp/testcases/open_posix_testsuite/stress/semaphores/
multi_con_pro.c 38 int in, out; variable
122 data = buf->buffer[out];
124 ThreadID, data, out);
125 out = (out + 1) % BUF_SIZE;
192 in = out = 0;
  /external/lz4/contrib/gen_manual/
gen_manual.cpp 27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
68 vector<string> out; local
79 out.push_back(line);
82 out.push_back(line);
85 return out;
129 ostream.open(argv[3], ifstream::out);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
IndexEncoder.java 33 public void encode(OutputStream out) throws IOException {
35 CheckedOutputStream outChecked = new CheckedOutputStream(out, crc32);
57 out.write((byte)(value >>> (i * 8)));
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
Convert.h 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
100 // Check for out of range
171 // Check for out of range
286 INT out = (INT)src; local
288 outColor[comp] = *(UINT*)&out;
318 INT out = *(INT*)&src; // Hot tile format is SINT? local
325 out = std::max(out, min);
326 out = std::min(out, max)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileEntry.java 35 private ByteArrayOutputStream out; field in class:FileEntry
125 if (append && out != null) {
126 return out;
129 out = new ByteArrayOutputStream();
132 out.write(initialContents);
137 return out;
164 return (out != null) ? out.toByteArray() : bytes;
176 this.out = null;
  /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/main/java/org/objenesis/tck/
CandidateLoader.java 55 private final PrintStream out; field in class:CandidateLoader.LoggingErrorHandler
58 * @param out Stream in which to log
60 public LoggingErrorHandler(PrintStream out) {
61 this.out = out;
65 out.println("Class not found : " + name);
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SearchWorkingInstantiator.java 38 System.out.println();
39 System.out.println(PlatformDescription.describePlatform());
40 System.out.println();
  /external/objenesis/tck/src/test/java/org/objenesis/tck/
ObjenesisTest.java 59 PrintStream out = new PrintStream(buffer); local
60 out.println("Exception when instantiating " + currentCandidate + " with "
62 exception.printStackTrace(out);
  /external/objenesis/tck-android/src/main/java/org/objenesis/tck/android/
ObjenesisTest.java 60 PrintStream out = new PrintStream(buffer); local
61 out.println("Exception when instantiating " + currentCandidate + " with "
63 exception.printStackTrace(out);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
FormEncodingBuilderTest.java 37 Buffer out = new Buffer(); local
38 formEncoding.writeTo(out);
39 assertEquals(expected, out.readUtf8());
50 Buffer out = new Buffer(); local
51 formEncoding.writeTo(out);
52 assertEquals(expected, out.readUtf8());
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Spdy3Test.java 97 Buffer out = new Buffer(); local
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
99 return out;
  /external/openssh/openbsd-compat/
bcrypt_pbkdf.c 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
70 bcrypt_hash(u_int8_t *sha2pass, u_int8_t *sha2salt, u_int8_t *out)
96 /* copy out */
98 out[4 * i + 3] = (cdata[i] >> 24) & 0xff;
99 out[4 * i + 2] = (cdata[i] >> 16) & 0xff;
100 out[4 * i + 1] = (cdata[i] >> 8) & 0xff;
101 out[4 * i + 0] = cdata[i] & 0xff;
116 u_int8_t out[BCRYPT_HASHSIZE]; local
127 keylen > sizeof(out) * sizeof(out) || saltlen > 1<<20
    [all...]

Completed in 548 milliseconds

<<31323334353637383940>>