/external/selinux/policycoreutils/semodule_package/ |
semodule_package.c | 46 fprintf(stderr, "%s: Out of memory\n", progname); 93 struct sepol_policy_file *mod, *out; local 212 fprintf(stderr, "%s: Out of memory\n", argv[0]); 236 if (file_to_policy_file(outfile, &out, "w")) 239 if (sepol_module_package_write(pkg, out)) { 251 sepol_policy_file_free(out);
|
/external/skia/src/core/ |
SkMaskGamma.cpp | 115 float out = dstConvert.fromLuma(dstGamma, linOut); local 118 float result = (out - dst) / (src - dst);
|
SkRTree.cpp | 55 Node* out = fNodes.push(); local 57 out->fNumChildren = 0; 58 out->fLevel = level; 59 return out;
|
/external/skia/tests/ |
PathOpsSimplifyDegenerateThreadedTest.cpp | 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 37 SkPath path, out; local 59 testSimplify(path, false, out, state, pathStr); 64 testSimplify(path, true, out, state, pathStr);
|
PathOpsSimplifyQuadThreadedTest.cpp | 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 39 SkPath path, out; local 69 testSimplify(path, false, out, state, pathStr); 74 testSimplify(path, true, out, state, pathStr);
|
PathOpsSimplifyQuadralateralsThreadedTest.cpp | 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter? 39 SkPath path, out; local 66 testSimplify(path, false, out, state, pathStr); 71 testSimplify(path, true, out, state, pathStr);
|
/external/skia/tools/skiaserve/ |
Request.cpp | 16 SkWStream* out = (SkWStream*) png_get_io_ptr(png_ptr); local 17 out->write(data, length); 20 static void write_png(const png_bytep rgba, png_uint_32 width, png_uint_32 height, SkWStream& out) { 45 png_set_write_fn(png, &out, write_png_callback, NULL);
|
/external/smali/util/src/main/java/org/jf/util/ |
Utf8Utils.java | 95 char out; local 105 out = (char) v0; 127 out = (char) value; 154 out = (char) value; 163 chars[outAt] = out; 203 char out; local 212 out = (char) v0; 230 out = (char) value; 253 out = (char) value; 262 chars[outAt] = out; [all...] |
/external/tlsdate/src/ |
test-bio.c | 29 unsigned char *out; member in struct:test_ctx 43 unsigned char *out, size_t outsz) 47 memcpy (out, *buf, outsz); 71 ctx->out = NULL; 86 free (ctx->out); 95 buf_fill (&ctx->out, &ctx->outsz, (unsigned char *) buf, sz); 149 return buf_drain (&c->out, &c->outsz, buf, bufsz);
|
/external/toybox/scripts/ |
mkflags.c | 22 // replace chopped out USE_BLAH() sections with low-ascii characters 113 char *out, *outbuf = malloc(1024*1024); local 117 if (!(out = outbuf)) return 1; 172 sprintf(out, "#ifdef FOR_%s\n#ifndef TT\n#define TT this.%s\n#endif\n", 174 out += strlen(out); 184 sprintf(out, "#define FLAG_%s (1%s<<%d)\n", flist->lopt->command, 187 } else sprintf(out, "#define FLAG_%s (FORCED_FLAG%s<<%d)\n", 199 sprintf(out, "#define FLAG_%c (1%s<<%d)\n", *aflist->command, 202 } else sprintf(out, "#define FLAG_%c (FORCED_FLAG%s<<%d)\n" [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/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/vogar/test/vogar/target/ |
TestRunnerTest.java | 39 @Rule public InterceptOutputStreams ios = new InterceptOutputStreams(Stream.OUT); 56 + "//00xx{\"completedNormally\":true}\n", ios.contents(Stream.OUT)); 86 + "//00xx{\"completedNormally\":true}\n", ios.contents(Stream.OUT)); 103 String out = ios.contents(Stream.OUT); local 105 out = out.replaceAll("\t[^\n]+\\n", ""); 122 + "//00xx{\"completedNormally\":true}\n", out); 137 String out = ios.contents(Stream.OUT); local [all...] |
/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/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/core/java/android/content/pm/ |
ProviderInfo.java | 133 @Override public void writeToParcel(Parcel out, int parcelableFlags) { 134 super.writeToParcel(out, parcelableFlags); 135 out.writeString(authority); 136 out.writeString(readPermission); 137 out.writeString(writePermission); 138 out.writeInt(grantUriPermissions ? 1 : 0); 139 out.writeTypedArray(uriPermissionPatterns, parcelableFlags); 140 out.writeTypedArray(pathPermissions, parcelableFlags); 141 out.writeInt(multiprocess ? 1 : 0); 142 out.writeInt(initOrder) [all...] |
/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/android/text/method/ |
DigitsKeyListener.java | 140 CharSequence out = super.filter(source, start, end, dest, dstart, dend); local 143 return out; 146 if (out != null) { 147 source = out; 149 end = out.length(); 157 * Find out if the existing text has a sign or decimal point characters. 180 * If it does, we must strip them out from the source. 223 } else if (out != null) { 224 return out;
|