/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDILUtilityFunctions.h | 18 #define ExpandCaseTo32bitIntTypes(Instr) \ 19 case Instr##_i32: 21 #define ExpandCaseTo32bitIntTruncTypes(Instr) \ 22 case Instr##_i32i8: \ 23 case Instr##_i32i16: 25 #define ExpandCaseToIntTypes(Instr) \ 26 ExpandCaseTo32bitIntTypes(Instr) 28 #define ExpandCaseToIntTruncTypes(Instr) \ 29 ExpandCaseTo32bitIntTruncTypes(Instr) 31 #define ExpandCaseToFloatTypes(Instr) \ [all...] |
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDILUtilityFunctions.h | 18 #define ExpandCaseTo32bitIntTypes(Instr) \ 19 case Instr##_i32: 21 #define ExpandCaseTo32bitIntTruncTypes(Instr) \ 22 case Instr##_i32i8: \ 23 case Instr##_i32i16: 25 #define ExpandCaseToIntTypes(Instr) \ 26 ExpandCaseTo32bitIntTypes(Instr) 28 #define ExpandCaseToIntTruncTypes(Instr) \ 29 ExpandCaseTo32bitIntTruncTypes(Instr) 31 #define ExpandCaseToFloatTypes(Instr) \ [all...] |
/external/chromium_org/v8/src/arm64/ |
disasm-arm64.h | 27 #define DECLARE(A) void Visit##A(Instruction* instr); 32 virtual void ProcessOutput(Instruction* instr); 34 void Format(Instruction* instr, const char* mnemonic, const char* format); 35 void Substitute(Instruction* instr, const char* string); 36 int SubstituteField(Instruction* instr, const char* format); 37 int SubstituteRegisterField(Instruction* instr, const char* format); 38 int SubstituteImmediateField(Instruction* instr, const char* format); 39 int SubstituteLiteralField(Instruction* instr, const char* format); 40 int SubstituteBitfieldImmediateField(Instruction* instr, const char* format); 41 int SubstituteShiftField(Instruction* instr, const char* format) [all...] |
decoder-arm64-inl.h | 19 void Decoder<V>::Decode(Instruction *instr) { 20 if (instr->Bits(28, 27) == 0) { 21 V::VisitUnallocated(instr); 23 switch (instr->Bits(27, 24)) { 25 case 0x0: DecodePCRelAddressing(instr); break; 28 case 0x1: DecodeAddSubImmediate(instr); break; 41 case 0xB: DecodeDataProcessing(instr); break; 45 case 0x2: DecodeLogical(instr); break; 49 case 0x3: DecodeBitfieldExtract(instr); break; 62 case 0x7: DecodeBranchSystemException(instr); break [all...] |
lithium-arm64.cc | 371 HInstruction* instr = HInstruction::cast(value); local 372 VisitInstruction(instr); 429 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 432 instr->set_result(result); 433 return instr; 438 LTemplateResultInstruction<1>* instr) { 439 return Define(instr, 445 LTemplateResultInstruction<1>* instr, int index) { 446 return Define(instr, 452 LTemplateResultInstruction<1>* instr) { 659 LInstruction* instr = NULL; local [all...] |
lithium-codegen-arm64.cc | 383 LInstruction* instr) { 384 CallCodeGeneric(code, mode, instr, RECORD_SIMPLE_SAFEPOINT); 390 LInstruction* instr, 392 DCHECK(instr != NULL); 396 RecordSafepointWithLazyDeopt(instr, safepoint_mode); 407 void LCodeGen::DoCallFunction(LCallFunction* instr) { 408 DCHECK(ToRegister(instr->context()).is(cp)); 409 DCHECK(ToRegister(instr->function()).Is(x1)); 410 DCHECK(ToRegister(instr->result()).Is(x0)); 412 int arity = instr->arity() 1546 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredAllocate 2181 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredCheckMaps 3059 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredInstanceOfKnownGlobal 3815 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredMathAbsTagged 4548 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredNumberTagD 4627 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredNumberTagU 5048 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredStackCheck 5069 instr); local 5457 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredStringCharCodeAt 5504 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredStringCharFromCode 5653 virtual LInstruction* instr() { return instr_; } function in class:v8::internal::DeferredTaggedToI [all...] |
disasm-arm64.cc | 52 void Disassembler::VisitAddSubImmediate(Instruction* instr) { 53 bool rd_is_zr = RdIsZROrSP(instr); 54 bool stack_op = (rd_is_zr || RnIsZROrSP(instr)) && 55 (instr->ImmAddSub() == 0) ? true : false; 61 switch (instr->Mask(AddSubImmediateMask)) { 93 Format(instr, mnemonic, form); 97 void Disassembler::VisitAddSubShifted(Instruction* instr) { 98 bool rd_is_zr = RdIsZROrSP(instr); 99 bool rn_is_zr = RnIsZROrSP(instr); 105 switch (instr->Mask(AddSubShiftedMask)) [all...] |
/external/vixl/src/a64/ |
decoder-a64.cc | 33 void Decoder::Decode(Instruction *instr) { 34 if (instr->Bits(28, 27) == 0) { 35 VisitUnallocated(instr); 37 switch (instr->Bits(27, 24)) { 39 case 0x0: DecodePCRelAddressing(instr); break; 42 case 0x1: DecodeAddSubImmediate(instr); break; 55 case 0xB: DecodeDataProcessing(instr); break; 59 case 0x2: DecodeLogical(instr); break; 63 case 0x3: DecodeBitfieldExtract(instr); break; 76 case 0x7: DecodeBranchSystemException(instr); break [all...] |
disasm-a64.h | 45 #define DECLARE(A) void Visit##A(Instruction* instr); 50 virtual void ProcessOutput(Instruction* instr); 53 void Format(Instruction* instr, const char* mnemonic, const char* format); 54 void Substitute(Instruction* instr, const char* string); 55 int SubstituteField(Instruction* instr, const char* format); 56 int SubstituteRegisterField(Instruction* instr, const char* format); 57 int SubstituteImmediateField(Instruction* instr, const char* format); 58 int SubstituteLiteralField(Instruction* instr, const char* format); 59 int SubstituteBitfieldImmediateField(Instruction* instr, const char* format); 60 int SubstituteShiftField(Instruction* instr, const char* format) [all...] |
/external/libogg/macos/compat/ |
strdup.c | 6 char *strdup(const char *inStr) 10 if (inStr == NULL) { 14 outStr = _ogg_malloc(strlen(inStr) + 1); 17 strcpy(outStr, inStr);
|
/external/libvorbis/macos/compat/ |
strdup.c | 6 char *strdup(const char *inStr) 10 if (inStr == NULL) { 14 outStr = _ogg_malloc(strlen(inStr) + 1); 17 strcpy(outStr, inStr);
|
/external/chromium_org/v8/src/mips64/ |
disasm-mips64.cc | 72 void PrintRs(Instruction* instr); 73 void PrintRt(Instruction* instr); 74 void PrintRd(Instruction* instr); 75 void PrintFs(Instruction* instr); 76 void PrintFt(Instruction* instr); 77 void PrintFd(Instruction* instr); 78 void PrintSa(Instruction* instr); 79 void PrintSd(Instruction* instr); 80 void PrintSs1(Instruction* instr); 81 void PrintSs2(Instruction* instr); 1396 Instruction* instr = Instruction::At(instr_ptr); local [all...] |
lithium-mips64.cc | 164 LInstruction* LChunkBuilder::DoDebugBreak(HDebugBreak* instr) { 525 HInstruction* instr = HInstruction::cast(value); local 526 VisitInstruction(instr); 533 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 536 instr->set_result(result); 537 return instr; 542 LTemplateResultInstruction<1>* instr) { 543 return Define(instr, 549 LTemplateResultInstruction<1>* instr, int index) { 550 return Define(instr, 831 LInstruction* instr = NULL; local [all...] |
/external/chromium_org/v8/src/mips/ |
disasm-mips.cc | 72 void PrintRs(Instruction* instr); 73 void PrintRt(Instruction* instr); 74 void PrintRd(Instruction* instr); 75 void PrintFs(Instruction* instr); 76 void PrintFt(Instruction* instr); 77 void PrintFd(Instruction* instr); 78 void PrintSa(Instruction* instr); 79 void PrintSd(Instruction* instr); 80 void PrintSs1(Instruction* instr); 81 void PrintSs2(Instruction* instr); 1244 Instruction* instr = Instruction::At(instr_ptr); local [all...] |
lithium-mips.cc | 164 LInstruction* LChunkBuilder::DoDebugBreak(HDebugBreak* instr) { 525 HInstruction* instr = HInstruction::cast(value); local 526 VisitInstruction(instr); 533 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 536 instr->set_result(result); 537 return instr; 542 LTemplateResultInstruction<1>* instr) { 543 return Define(instr, 549 LTemplateResultInstruction<1>* instr, int index) { 550 return Define(instr, 831 LInstruction* instr = NULL; local [all...] |
/external/chromium_org/v8/src/arm/ |
disasm-arm.cc | 78 int FormatVFPRegister(Instruction* instr, const char* format); 79 void PrintMovwMovt(Instruction* instr); 80 int FormatVFPinstruction(Instruction* instr, const char* format); 81 void PrintCondition(Instruction* instr); 82 void PrintShiftRm(Instruction* instr); 83 void PrintShiftImm(Instruction* instr); 84 void PrintShiftSat(Instruction* instr); 85 void PrintPU(Instruction* instr); 89 int FormatRegister(Instruction* instr, const char* option); 92 int FormatOption(Instruction* instr, const char* option) 1645 Instruction* instr = Instruction::At(instr_ptr); local [all...] |
lithium-arm.cc | 518 HInstruction* instr = HInstruction::cast(value); local 519 VisitInstruction(instr); 526 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 529 instr->set_result(result); 530 return instr; 535 LTemplateResultInstruction<1>* instr) { 536 return Define(instr, 542 LTemplateResultInstruction<1>* instr, int index) { 543 return Define(instr, 549 LTemplateResultInstruction<1>* instr) { 821 LInstruction* instr = NULL; local [all...] |
/external/chromium_org/v8/src/x87/ |
lithium-x87.cc | 575 HInstruction* instr = HInstruction::cast(value); local 576 VisitInstruction(instr); 583 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 586 instr->set_result(result); 587 return instr; 592 LTemplateResultInstruction<1>* instr) { 593 return Define(instr, 599 LTemplateResultInstruction<1>* instr, 601 return Define(instr, 607 LTemplateResultInstruction<1>* instr) { 860 LInstruction* instr = NULL; local [all...] |
lithium-codegen-x87.cc | 336 void LCodeGen::GenerateBodyInstructionPre(LInstruction* instr) { 337 if (instr->IsCall()) { 340 if (!instr->IsLazyBailout() && !instr->IsGap()) { 343 FlushX87StackIfNecessary(instr); 347 void LCodeGen::GenerateBodyInstructionPost(LInstruction* instr) { 349 if (instr->IsCall() && instr->ClobbersDoubleRegisters(isolate())) { 350 bool double_result = instr->HasDoubleRegisterResult(); 361 if (instr->IsGoto()) 6113 instr); local [all...] |
/external/chromium_org/v8/src/ia32/ |
lithium-ia32.cc | 569 HInstruction* instr = HInstruction::cast(value); local 570 VisitInstruction(instr); 577 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 580 instr->set_result(result); 581 return instr; 586 LTemplateResultInstruction<1>* instr) { 587 return Define(instr, 593 LTemplateResultInstruction<1>* instr, 595 return Define(instr, 601 LTemplateResultInstruction<1>* instr) { 861 LInstruction* instr = NULL; local [all...] |
lithium-codegen-ia32.cc | 367 void LCodeGen::GenerateBodyInstructionPre(LInstruction* instr) { 368 if (instr->IsCall()) { 371 if (!instr->IsLazyBailout() && !instr->IsGap()) { 377 void LCodeGen::GenerateBodyInstructionPost(LInstruction* instr) { } 440 code->instr()->hydrogen_value()->id(), 441 code->instr()->Mnemonic()); 719 LInstruction* instr, 721 DCHECK(instr != NULL); 723 RecordSafepointWithLazyDeopt(instr, safepoint_mode) 5517 instr); local [all...] |
/external/chromium_org/v8/src/x64/ |
lithium-x64.cc | 551 HInstruction* instr = HInstruction::cast(value); local 552 VisitInstruction(instr); 559 LInstruction* LChunkBuilder::Define(LTemplateResultInstruction<1>* instr, 562 instr->set_result(result); 563 return instr; 568 LTemplateResultInstruction<1>* instr) { 569 return Define(instr, 575 LTemplateResultInstruction<1>* instr, 577 return Define(instr, 583 LTemplateResultInstruction<1>* instr) { 844 LInstruction* instr = NULL; local [all...] |
lithium-codegen-x64.cc | 263 void LCodeGen::GenerateBodyInstructionPre(LInstruction* instr) { 264 if (instr->IsCall()) { 267 if (!instr->IsLazyBailout() && !instr->IsGap()) { 273 void LCodeGen::GenerateBodyInstructionPost(LInstruction* instr) { 274 if (FLAG_debug_code && FLAG_enable_slow_asserts && instr->HasResult() && 275 instr->hydrogen_value()->representation().IsInteger32() && 276 instr->result()->IsRegister()) { 277 __ AssertZeroExtended(ToRegister(instr->result())); 280 if (instr->HasResult() && instr->MustSignExtendResult(chunk())) 3239 DeoptimizeIf(NegateCondition(smi), instr, "not a Smi"); local 4844 DeoptimizeIf(NegateCondition(is_smi), instr, "overflow"); local 4859 DeoptimizeIf(NegateCondition(is_smi), instr, "not a Smi"); local 5088 DeoptimizeIf(NegateCondition(cc), instr, "not a Smi"); local 5700 instr); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
Streams.java | 12 public static void drain(InputStream inStr) 16 while (inStr.read(bs, 0, bs.length) >= 0) 21 public static byte[] readAll(InputStream inStr) 25 pipeAll(inStr, buf); 29 public static byte[] readAllLimited(InputStream inStr, int limit) 33 pipeAllLimited(inStr, limit, buf); 37 public static int readFully(InputStream inStr, byte[] buf) 40 return readFully(inStr, buf, 0, buf.length); 43 public static int readFully(InputStream inStr, byte[] buf, int off, int len) 49 int numRead = inStr.read(buf, off + totalRead, len - totalRead) [all...] |
/external/chromium_org/v8/src/ |
hydrogen-canonicalize.cc | 18 HInstruction* instr = it.Current(); local 19 if (instr->IsArithmeticBinaryOperation()) { 20 if (instr->representation().IsInteger32()) { 21 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout( 23 instr->SetFlag(HInstruction::kAllUsesTruncatingToInt32); 25 } else if (instr->representation().IsSmi()) { 26 if (instr->HasAtLeastOneUseWithFlagAndNoneWithout( 28 instr->SetFlag(HInstruction::kAllUsesTruncatingToSmi); 29 } else if (instr->HasAtLeastOneUseWithFlagAndNoneWithout( 32 instr->SetFlag(HInstruction::kAllUsesTruncatingToInt32) 48 HInstruction* instr = it.Current(); local [all...] |