/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationSimplifier.java | 129 System.out.println(); 130 System.out.println("EvaluationSimplifier ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]"); [all...] |
PartialEvaluator.java | 200 System.out.println("Evaluation results:"); 207 System.out.println("Branch target from ["+branchOriginValues[offset]+"]:"); 210 System.out.println(" Vars: "+variablesBefore[offset]); 211 System.out.println(" Stack: "+stacksBefore[offset]); 217 System.out.println(instruction.toString(offset)); 224 System.out.println(" is to be initialized at ["+initializationOffset+"]"); 230 System.out.println(" has overall been branching to "+branchTargets); 233 System.out.println(" Vars: "+variablesAfter[offset]); 234 System.out.println(" Stack: "+stacksAfter[offset]); 252 System.out.println() [all...] |
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
LiteralByteStringTest.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 345 ByteOutput out = new ByteOutput() { local 372 stringUnderTest.writeTo(out); 534 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 535 ObjectOutputStream oos = new ObjectOutputStream(out); 538 byte[] pickled = out.toByteArray();
|
WireFormatTest.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 563 ByteString.CodedBuilder out = ByteString.newCodedBuilder( local 565 CodedOutputStream output = out.getCodedOutput(); 574 ByteString data = out.build();
|
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/ |
Extension.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 260 protected void writeSingularData(Object value, CodedOutputByteBufferNano out) { 263 out.writeRawVarint32(tag); 268 out.writeGroupNoTag(groupValue); 270 out.writeTag(fieldNumber, WireFormatNano.WIRETYPE_END_GROUP); 274 out.writeMessageNoTag(messageValue);
|
/external/python/cpython2/Modules/ |
binascii.c | 229 ** there are a few uuencodes out there that use 492 newline. Note that 'b' gets encoded as 'Yg==\n' (1 in, 5 out). */ 1181 Py_ssize_t in, out; local 1288 Py_ssize_t in, out; local [all...] |
stropmodule.c | 597 PyObject* out; local 638 out = PyString_FromStringAndSize(NULL, i+j); 639 if (out == NULL) 643 q = PyString_AS_STRING(out); 659 return out; [all...] |
/external/r8/src/test/java/com/android/tools/r8/smali/ |
SmaliTestBase.java | 475 Path out = temp.getRoot().toPath().resolve("run-art-input.zip"); local 477 app.writeToZip(out, OutputMode.Indexed); 478 return ToolHelper.runArtNoVerificationErrors(out.toString(), DEFAULT_MAIN_CLASS_NAME);
|
/external/regex-re2/re2/ |
prog.h | 89 void InitAlt(uint32 out, uint32 out1); 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out); 91 void InitCapture(int cap, uint32 out); 92 void InitEmptyWidth(EmptyOp empty, uint32 out); 94 void InitNop(uint32 out); 100 int out() { return out_opcode_>>3; } function in class:re2::Prog::Inst 110 return p->inst(out())->opcode() == kInstByteRange; 130 out_opcode_ = (out()<<3) | opcode; 133 void set_out(int out) { 134 out_opcode_ = (out<<3) | opcode() [all...] |
re2.cc | 380 string out; local 386 out.append(p, vec[0].begin() - p); 390 out.append(p, 1); 394 re.Rewrite(&out, rewrite, vec, nvec); 404 out.append(p, ep - p); 405 swap(out, *str); 412 string *out) { 421 out->clear(); 422 return re.Rewrite(out, rewrite, vec, nvec); 547 // Use DFAs to find exact location of match, filter out non-matches [all...] |
/external/skia/tools/ |
colorspaceinfo.cpp | 412 sk_sp<SkData> out = sk_tool_utils::EncodeImageToData(fBitmap, SkEncodedImageFormat::kPNG, local 414 if (!out) { 419 if (!stream.write(out->data(), out->size())) { 643 sk_sp<SkData> out = sk_tool_utils::EncodeImageToData(bitmap, SkEncodedImageFormat::kPNG, local 645 if (!out) { 650 if (!bitmapStream.write(out->data(), out->size())) {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
ContactsFacade.java | 421 OutputStream out = null; local
|
/external/speex/libspeex/ |
nb_celp.c | 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 1103 spx_word16_t *out = (spx_word16_t*)vout; local [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/ |
GCOVProfiling.cpp | 87 // Add the function to write out all our counters to the global destructor 134 // padding out to the next 4-byte word. The length is measured in 4-byte 362 raw_fd_ostream *&out = GcnoFiles[CU]; local 364 out = new raw_fd_ostream(mangleName(CU, "gcno").c_str(), ErrorInfo, 367 out->write("oncg*404MVLL", 12); 369 out->write("oncg*204MVLL", 12); 411 raw_fd_ostream *&out = I->second; local 412 out->write("\0\0\0\0\0\0\0\0", 8); // EOF 413 out->close(); 414 delete out; [all...] |
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 717 static_assert(B <= 32, "Bit width out of range."); 725 assert(B <= 32 && "Bit width out of range."); 733 static_assert(B <= 64, "Bit width out of range."); 741 assert(B <= 64 && "Bit width out of range.") [all...] |
/external/syslinux/gpxe/src/arch/i386/prefix/ |
romprefix.S | 429 jmp out 479 jnz out 486 out: label
|
/external/testng/src/main/java/org/testng/log4testng/ |
Logger.java | 24 * <li>All logging is done using System.out (for levels < ERROR) or System.err. There
90 /** The standard output stream (this is allways System.out except for unit tests) */
91 private static PrintStream out= System.out;
field in class:Logger 443 PrintStream ps= (pLevel >= ERROR) ? err : out;
457 * Logs the message to System.out of debug is on.
462 out.println("[log4testng] [debug] " + pmessage);
481 out= pOut;
|
/external/v8/src/wasm/ |
wasm-module-builder.h | 81 byte out = static_cast<byte>(val & 0x7f); local 83 *(ptr++) = 0x80 | out; 86 *(ptr++) = out;
|
/external/v8/testing/gmock/test/ |
gmock-actions_test.cc | 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 1345 std::vector<std::unique_ptr<int>> out; local [all...] |
/external/valgrind/coregrind/ |
m_options.c | 174 HChar* out; local 199 out = VG_(malloc)( "options.efn.1", len ); 204 out = VG_(realloc)("options.efn.2(multiple)", out, len); \ 210 out[j++] = format[i++]; 218 out[j++] = format[i++]; 225 j += VG_(sprintf)(&out[j], "%d", pid); 238 j += VG_(sprintf)(&out[j], "%d", seq_nr); 275 j += VG_(sprintf)(&out[j], "%s", qual); 289 out[j++] = 0 [all...] |
/external/vogar/src/vogar/ |
Vogar.java | 212 System.out.println("Usage: Vogar [options]... <actions>... [-- target args]..."); 213 System.out.println(); 214 System.out.println(" <actions>: .java files, directories, or class names."); 215 System.out.println(" These should be JUnit tests, jtreg tests, Caliper benchmarks"); 216 System.out.println(" or executable Java classes."); 217 System.out.println(); 218 System.out.println(" When passing in a JUnit test class, it may have \"#method_name\""); 219 System.out.println(" appended to it, to specify a single test method."); 220 System.out.println(); 221 System.out.println(" [args]: arguments passed to the target process. This is only useful when") [all...] |
/external/vulkan-validation-layers/libs/cjson/ |
cJSON.c | 22 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 271 char *out; local 283 out = (char *)cJSON_malloc( 285 if (!out) 289 ptr2 = out; 364 item->valuestring = out; 373 char *out; local 384 out = ensure(p, len + 3); 386 out = (char *)cJSON_malloc(len + 3); 387 if (!out) 565 char *out = 0; local 671 char *out = 0, *ptr, *ret; local 840 char *out = 0, *ptr, *ret, *str; local [all...] |
/external/webp/src/dsp/ |
enc_mips_dsp_r2.c | 114 // A..D - offsets in bytes to store to out buffer 144 static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) { 151 { (const int*)src, (const int*)ref, (const int*)out }; 1460 int16_t out[16]; local [all...] |
enc_sse41.c | 33 int16_t out[16]; local 36 VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out); 38 // Convert coefficients to bin (within out[]). 41 const __m128i out0 = _mm_loadu_si128((__m128i*)&out[0]); 42 const __m128i out1 = _mm_loadu_si128((__m128i*)&out[8]); 43 // v = abs(out) >> 3 52 _mm_storeu_si128((__m128i*)&out[0], bin0); 53 _mm_storeu_si128((__m128i*)&out[8], bin1); 58 ++distribution[out[k]]; 85 // of inA and inB, _mm_loadl_epi64 is still used not to have an out o [all...] |
lossless_neon.c | 152 #define STOREQ_U8_AS_U32P(OUT, IN) vst1q_u32((OUT), vreinterpretq_u32_u8((IN))); 209 int num_pixels, uint32_t* out) { 215 STOREQ_U8_AS_U32P(&out[i], res); 217 VP8LPredictorsAdd_C[0](in + i, upper + i, num_pixels - i, out + i); 222 int num_pixels, uint32_t* out) { 236 const uint8x16_t prev = LOADQ_U32_AS_U8(out[i - 1]); 238 STOREQ_U8_AS_U32P(&out[i], res); 240 VP8LPredictorsAdd_C[1](in + i, upper + i, num_pixels - i, out + i); 248 uint32_t* out) { \ 595 const uint32x4_t out = vorrq_u32(vreinterpretq_u32_u16(G), a0g0); local [all...] |