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

<<31323334353637383940>>

  /external/toybox/toys/pending/
gzip.c 88 FILE *out; local
113 if (!strcmp(out_name, "-")) out = stdout;
119 out = xfdopen(out_fd, "w");
123 if (fwrite(toybuf, 1, len, out) != (size_t) len) perror_exit("writing");
126 if (out != stdout && fclose(out)) perror_exit("writing");
140 gzFile out; local
156 out = gzdopen(out_fd, toybuf);
157 if (out == NULL) perror_exit("gzdopen %s", out_name);
160 if (gzwrite(out, toybuf, len) != (int) len) gzerror_exit(out, "gzwrite")
    [all...]
  /external/tremolo/Tremolo/
misc.c 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
90 FILE *out; local
120 out=fopen(buffer,"a");
121 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
123 fprintf(out,"%ld, %ld # FILE %s LINE %ld\n",
126 fclose(out);
128 out=fopen("total"_VDBG_GRAPHFILE,"a");
129 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
131 fprintf(out,"%ld, %ld\n",-start_time+(tv.tv_sec*1000)+(tv.tv_usec/1000),
133 fclose(out);
147 FILE *out=fopen("total"_VDBG_GRAPHFILE,"a"); local
    [all...]
  /external/v8/src/compiler/
bytecode-liveness-map.h 80 BytecodeLivenessState* out; member in struct:v8::internal::compiler::BytecodeLiveness
103 return GetLiveness(offset).out;
106 return GetLiveness(offset).out;
  /external/valgrind/none/tests/arm/
v6intThumb.c 21 unsigned int out; \
29 : "=&r" (out), "=&r" (cpsr) \
34 instruction, out, \
49 unsigned int out; \
58 : "=&r" (out), "=&r" (cpsr) \
63 instruction, out, \
76 unsigned int out; \
89 : "=&r" (out), "=&r" (cpsr) \
94 instruction, out, RMval, \
108 unsigned int out; \
353 unsigned int out; local
    [all...]
  /external/valgrind/none/tests/s390x/
dfp-2.c 16 long out; local
17 asm volatile(".insn rre, 0xb3e50000, %[out], %[in]\n\t"
18 :[out] "=d" (out) :[in] "f" (in));
21 printf(" -> %ld\n", out);
26 long out; local
27 asm volatile(".insn rre, 0xb3ed0000, %[out], %[in]\n\t"
28 :[out] "=d" (out) :[in] "f" (in));
31 printf(" -> %ld\n", out);
36 long out; local
46 long out; local
56 _Decimal64 out; local
71 _Decimal128 out; local
86 _Decimal64 out; local
100 _Decimal128 out; local
114 _Decimal64 out; local
140 _Decimal128 out; local
166 _Decimal64 out; local
190 _Decimal128 out; local
214 _Decimal64 out; local
230 _Decimal128 out; local
246 _Decimal64 out; local
262 _Decimal128 out; local
    [all...]
  /external/vogar/src/vogar/
Outcome.java 100 PrintWriter out = new PrintWriter(writer); local
101 t.printStackTrace(out);
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
LogUploader.java 56 BufferedOutputStream out = local
58 PrintWriter writer = new PrintWriter(out);
  /external/webp/src/dsp/
lossless_enc_neon.c 119 const int8x16_t out = vsubq_s8(vreinterpretq_s8_u8(in), local
121 vst1q_s8((int8_t*)(argb_data + i), out);
  /external/webrtc/webrtc/base/
optionsfile_unittest.cc 135 std::string out; local
137 EXPECT_FALSE(store_->GetStringValue(kOptionWithEquals, &out));
139 EXPECT_FALSE(store_->GetStringValue(kOptionWithNewline, &out));
144 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out));
145 EXPECT_EQ(kTestString1, out);
146 EXPECT_TRUE(store_->GetStringValue(kOptionWithUtf8, &out));
147 EXPECT_EQ(kValueWithUtf8, out);
149 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out));
150 EXPECT_EQ(kTestString1, out);
154 EXPECT_TRUE(store_->GetStringValue(kTestOptionA, &out));
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
file_player_unittests.cc 63 int16_t out[10 * kSampleRateHz / 1000] = {0}; local
66 player_->Get10msAudioFromFile(out, num_samples, kSampleRateHz));
67 checksum.Update(out, num_samples * sizeof(out[0]));
70 fwrite(out, sizeof(out[0]), num_samples, output_file_));
  /external/xz-embedded/linux/include/linux/
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/zlib/src/contrib/masmx64/
inffas8664.c 44 Decode literal, length, and distance codes and write out the resulting
61 LEN -- ran out of enough output space or enough available input
88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
90 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
129 ar.out = strm->next_out;
130 ar.beg = ar.out - (start - strm->avail_out);
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
174 strm->next_out = ar.out;
178 strm->avail_out = (unsigned)(ar.out < ar.end ?
179 PAD_AVAIL_OUT + (ar.end - ar.out) :
    [all...]
  /external/zlib/src/
inffast.c 33 Decode literal, length, and distance codes and write out the resulting
50 LEN -- ran out of enough output space or enough available input
74 unsigned char FAR *out; /* local strm->next_out */ local
76 unsigned char FAR *end; /* while out < end, enough space available */
101 out = strm->next_out - OFF;
102 beg = out - (start - strm->avail_out);
103 end = out + (strm->avail_out - 257);
137 PUP(out) = (unsigned char)(here.val);
186 op = (unsigned)(out - beg); /* max distance in output */
199 PUP(out) = 0
    [all...]
  /external/zopfli/src/zopfli/
zopfli_bin.c 40 unsigned char** out, size_t* outsize) {
43 *out = 0;
52 *out = (unsigned char*)malloc(*outsize);
54 if (*outsize && (*out)) {
55 size_t testsize = fread(*out, 1, *outsize, file);
58 free(*out);
59 *out = 0;
64 assert(!(*outsize) || out); /* If size is not zero, out must be allocated. */
88 unsigned char* out = 0 local
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_imdct_synth.cpp 243 int32 * out = in + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
273 Scratch_mem[i ] = out[(i*3)];
274 Scratch_mem[6 +i] = out[(i*3) + 1];
275 Scratch_mem[12 +i] = out[(i*3) + 2];
288 out[i] = temp;
293 out[i+6] = fxp_mul32_Q32(Scratch_mem[i] << 1, short_win[i]);
294 out[i+6] += history[i+6]
334 int32 * out = in + (band * FILTERBANK_BANDS); local
    [all...]
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
TypefaceCreatePerfTest.java 90 OutputStream out = new FileOutputStream(outFile)) {
94 out.write(buf, 0, n);
  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 160 ByteBuffer out = ByteBuffer.allocate(bufferSize); local
161 out.putInt(0);
162 out.putInt(threadId);
163 out.putInt(trace.length);
165 out.putInt(elem.getClassName().length());
166 putString(out, elem.getClassName());
167 out.putInt(elem.getMethodName().length());
168 putString(out, elem.getMethodName());
170 out.putInt(elem.getFileName().length());
171 putString(out, elem.getFileName())
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 87 TypedValue out = new TypedValue(); local
88 getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true);
90 out.resourceId);
  /frameworks/base/core/java/com/android/internal/content/
PdfUtils.java 64 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
69 thumbnail.compress(Bitmap.CompressFormat.PNG, quality, out);
71 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
  /frameworks/base/core/java/com/android/internal/net/
LegacyVpnInfo.java 51 public void writeToParcel(Parcel out, int flags) {
52 out.writeString(key);
53 out.writeInt(state);
54 out.writeParcelable(intent, flags);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIcon.java 93 public void writeToParcel(Parcel out, int flags) {
94 out.writeParcelable(this.icon, 0);
95 out.writeString(this.pkg);
96 out.writeParcelable(this.user, 0);
97 out.writeInt(this.iconLevel);
98 out.writeInt(this.visible ? 1 : 0);
99 out.writeInt(this.number);
100 out.writeCharSequence(this.contentDescription);
  /frameworks/base/core/java/com/android/server/backup/
UsageStatsBackupHelper.java 39 DataOutputStream out = new DataOutputStream(baos); local
41 out.writeInt(UserHandle.USER_SYSTEM);
42 out.write(localUsageStatsManager.getBackupPayload(UserHandle.USER_SYSTEM, key));
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 64 FileDescriptor[] out = ls1.getAncillaryFileDescriptors(); local
66 assertEquals(1, out.length);
85 // Try various array-out-of-bound cases
SSLTest.java 34 OutputStream out = ssl.getOutputStream(); local
35 assertNotNull(out);
42 // System.out.println("going for write...");
43 out.write(get.getBytes());
46 // System.out.println("going for read...");
49 // System.out.println(new String(b));
  /frameworks/base/libs/androidfw/tests/
ResTable_test.cpp 280 Res_value out = {}; local
281 ASSERT_EQ(expectSuccess, U16StringToInt(str, len, &out)) << "Failed with "
285 ASSERT_EQ(out.TYPE_NULL, out.dataType) << "Failed with " << s;
290 ASSERT_EQ(out.TYPE_INT_HEX, out.dataType) << "Failed with " << s;
292 ASSERT_EQ(out.TYPE_INT_DEC, out.dataType) << "Failed with " << s;
295 ASSERT_EQ(expectedValue, out.data) << "Failed with " << s;

Completed in 456 milliseconds

<<31323334353637383940>>