/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/ |
shared-2.d | 11 Tag Type Name/Value
|
tlsbin-2.d | 58 Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend 65 Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend 69 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
|
tlspic-2.d | 52 Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend 65 Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend 69 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
|
/cts/suite/audio_quality/lib/src/task/ |
ModelBuilder.cpp | 127 if (strcmp(child->Value(), mParsingTable[i].name) == 0) { 132 LOGE("ModelBuilder::parseGeneric unknown element %s", child->Value()); 210 if (strcmp(inc->Value(),"include") != 0) { 211 LOGE("ModelBuilder::handleBatch invalid element %s", inc->Value()); 256 android::String8 value(attr->Value()); 257 if (!task.parseAttribute(name, value)) { 259 attr->Name(), attr->Value(), task.getType());
|
/external/clang/include/clang/Driver/ |
Driver.h | 241 void setCheckInputsExist(bool Value) { CheckInputsExist = Value; } 244 void setTitle(std::string Value) { DriverTitle = Value; } 257 void setInstalledDir(StringRef Value) { 258 InstalledDir = Value; 272 /// argument vector. A null return value does not necessarily
|
/external/llvm/lib/Analysis/ |
ScalarEvolutionNormalization.cpp | 23 /// value. If this user should use the post-inc version of the IV, return true. 26 /// post-inc value when we cannot) or it can end up adding extra live-ranges to 27 /// the loop, resulting in reg-reg copies (if we use the pre-inc value when we 28 /// should use the post-inc value). 29 static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, 31 // If the user is in the loop, use the preinc value. 39 // block, use the post-inc value. 46 // should still use the post-inc value. Check for this case now. 52 // preincremented value. 59 // dominated by the latch block. Use the post-incremented value [all...] |
GlobalsModRef.cpp | 196 Value *V = getValPtr(); 325 /// write to the value. 328 bool GlobalsAAResult::AnalyzeUsesOfPointer(Value *V, 409 // value produced by the malloc call and any casts. 410 std::vector<Value *> AllocRelatedValues; 436 // Check the value being stored. 437 Value *Ptr = GetUnderlyingObject(SI->getOperand(0), 622 const Value *V, 625 SmallPtrSet<const Value *, 8> Visited; 626 SmallVector<const Value *, 8> Inputs [all...] |
/external/llvm/lib/CodeGen/ |
DwarfEHPrepare.cpp | 46 Value *GetExceptionObject(ResumeInst *RI); 97 /// GetExceptionObject - Return the exception object from the value passed into 100 Value *DwarfEHPrepare::GetExceptionObject(ResumeInst *RI) { 101 Value *V = RI->getOperand(0); 102 Value *ExnObj = nullptr; 220 Value *ExnObj = GetExceptionObject(RI); 241 Value *ExnObj = GetExceptionObject(RI);
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
StatepointLowering.cpp | 42 SelectionDAGBuilder &Builder, uint64_t Value) { 46 Ops.push_back(Builder.DAG.getTargetConstant(Value, L, MVT::i64)); 117 /// stack slot index to which we have spilled value for previous statepoints. 119 static Optional<int> findPreviousSpillSlot(const Value *Val, 176 // TODO: handle simple updates. If a value is modified and the original 177 // value is no longer live, it would be nice to put the modified value in the 197 /// statepoint spilling. If we can find a spill slot for the incoming value, 201 static void reservePreviousStackSlotForValue(const Value *IncomingValue, 226 "value spilled to the unknown stack slot") [all...] |
/external/llvm/lib/IR/ |
Globals.cpp | 45 Value *GlobalValue::handleOperandChangeImpl(Value *From, Value *To, Use *U) { 145 : GlobalObject(Ty, Value::GlobalVariableVal, 163 : GlobalObject(Ty, Value::GlobalVariableVal, 232 : GlobalValue(Ty, Value::GlobalAliasVal, &Op<0>(), 1, Link, Name,
|
/external/llvm/lib/MC/ |
MCStreamer.cpp | 41 void MCTargetStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) {} 79 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size) { 81 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) && 87 buf[i] = uint8_t(Value >> (index * 8)); 94 void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned Padding) { 97 encodeULEB128(Value, OSE, Padding); 103 void MCStreamer::EmitSLEB128IntValue(int64_t Value) { 106 encodeSLEB128(Value, OSE); 110 void MCStreamer::EmitValue(const MCExpr *Value, unsigned Size, SMLoc Loc) [all...] |
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonInstPrinter.cpp | 98 int64_t Value; 99 if (MO.getExpr()->evaluateAsAbsolute(Value)) 100 O << formatImm(Value); 224 int64_t Value; 225 if (Expr.evaluateAsAbsolute(Value)) 226 O << format("0x%" PRIx64, Value);
|
HexagonMCDuplexInfo.cpp | 545 int64_t Value; 546 if (!potentialDuplex.getOperand(2).getExpr()->evaluateAsAbsolute(Value)) 548 if (!isShiftedInt<7, 0>(Value)) 556 int64_t Value; 557 if (!potentialDuplex.getOperand(1).getExpr()->evaluateAsAbsolute(Value)) 560 if (Value == -1) 563 if (!isShiftedUInt<6, 0>(Value)) 692 int64_t Value; 699 Absolute = Inst.getOperand(2).getExpr()->evaluateAsAbsolute(Value); 701 if (Value == 1) [all...] |
/external/llvm/lib/Transforms/IPO/ |
IPConstantPropagation.cpp | 84 // For each argument, keep track of its constant value and whether it is a 119 // Still the constant value we think it is. 142 Value *V = ArgumentConstants[i].first; 153 // all callers that use those return values with the constant value. This will 158 // callers will be updated to use the value they pass in directly instead of 159 // using the return value. 162 return false; // No return value. 170 SmallVector<Value *,4> RetVals; 183 Value *RV = RetVals[i]; 187 // Find the returned value [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoadCombine.cpp | 40 Value *Pointer; 77 bool combineLoads(DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> &); 111 DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> &LoadMap) { 199 Value *Ptr = Builder->CreateConstGEP1_64( 212 Value *V = Builder->CreateExtractInteger( 233 DenseMap<const Value *, SmallVector<LoadPOPPair, 8>> LoadMap;
|
Scalarizer.cpp | 31 typedef SmallVector<Value *, 8> ValueVector; 33 // Used to map a vector Value to its scattered form. We use std::map 36 typedef std::map<Value *, ValueVector> ScatterMap; 51 Scatterer(BasicBlock *bb, BasicBlock::iterator bbi, Value *v, 54 // Return component I, creating a new Value for it if necessary. 55 Value *operator[](unsigned I); 63 Value *V; 74 Value *operator()(IRBuilder<> &Builder, Value *Op0, Value *Op1 [all...] |
LoopUnswitch.cpp | 72 // The specific value of 100 here was chosen based only on intuition and a 95 typedef DenseMap<const SwitchInst*, SmallPtrSet<const Value *, 8> > 121 // value. So in most cases MaxSize will equal the Threshold flag 123 // MaxSize will have a smaller value while processing nested loops 145 // Mark case value as unswitched. 148 void setUnswitched(const SwitchInst *SI, const Value *V); 150 // Check was this case value unswitched before or not. 151 bool isUnswitched(const SwitchInst *SI, const Value *V); 245 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val, 247 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val [all...] |
/external/llvm/utils/TableGen/ |
DAGISelMatcher.h | 613 /// ConstantSDNode with the specified integer value, if not it fails to match. 615 int64_t Value; 617 CheckIntegerMatcher(int64_t value) 618 : Matcher(CheckInteger), Value(value) {} 620 int64_t getValue() const { return Value; } 631 return cast<CheckIntegerMatcher>(M)->Value == Value; 633 unsigned getHashImpl() const override { return Value; } 638 /// ConstantSDNode with a specified integer value, if not it fails to match [all...] |
/external/pdfium/fpdfsdk/src/javascript/ |
JS_Runtime_Stub.cpp | 50 const CFX_WideString& Value) override {} 54 const CFX_WideString& Value) override {} 57 CFX_WideString& Value, 60 CFX_WideString& Value, 70 CFX_WideString& Value, 80 CFX_WideString& Value,
|
/frameworks/base/tools/aapt2/ |
ResourceValues.h | 36 * A resource value. This is an all-encompassing representation 38 * type specific operations is to check the Value's type() and 42 struct Value { 43 virtual ~Value() = default; 46 * Whether this value is weak and can be overridden without 58 * Returns the source where this value was defined. 93 * Clone the value. 95 virtual Value* clone(StringPool* newPool) const = 0; 98 * Human readable printout of this value. 112 struct BaseValue : public Value { 182 StringPool::Ref value; member in struct:aapt::RawString 192 StringPool::Ref value; member in struct:aapt::String 210 StringPool::StyleRef value; member in struct:aapt::StyledString 247 android::Res_value value; member in struct:aapt::BinaryPrimitive 261 uint32_t value; member in struct:aapt::Attribute::Symbol 280 std::unique_ptr<Item> value; member in struct:aapt::Style::Entry [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ |
ifunc-3.d | 5 Offset Info Type Sym.Value Sym. Name 24 Offset Info Type Sym.Value Sym. Name 37 Num: Value Size Type Bind Vis Ndx Name
|
/external/llvm/lib/Target/ARM/AsmParser/ |
ARMAsmParser.cpp | 493 const MCConstantExpr *OffsetImm; // Offset immediate value 713 int64_t Value = CE->getValue(); 714 return Value >= 0 && Value <= 16; 720 int64_t Value = CE->getValue(); 721 return Value >= 1 && Value <= 32; 727 int64_t Value = CE->getValue(); 728 return ((Value & 3) == 0) && Value >= -1020 && Value <= 1020 [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMELFStreamer.cpp | 79 void emitAttribute(unsigned Attribute, unsigned Value) override; 91 void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) override; 156 void ARMTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) { 157 OS << "\t.eabi_attribute\t" << Attribute << ", " << Twine(Value); 186 default: llvm_unreachable("unsupported multi-value attribute in asm mode"); 216 void ARMTargetAsmStreamer::emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) { 222 Value->print(OS, MAI); 246 // their string/numeric value, so we can later emit them 291 void setAttributeItem(unsigned Attribute, unsigned Value, 298 Item->IntValue = Value; [all...] |
/external/llvm/lib/ProfileData/ |
InstrProf.cpp | 60 return "Function value site count change detected (counter mismatch)"; 62 llvm_unreachable("A value of instrprof_error has no message."); 149 auto *Value = ConstantDataArray::getString(M.getContext(), FuncName, false); 151 new GlobalVariable(M, Value->getType(), true, Linkage, Value, 175 while (I != IE && I->Value < J->Value) 177 if (I != IE && I->Value == J->Value) { 196 // Merge Value Profile data from Src record to this record for ValueKind [all...] |
/external/v8/src/ |
api.cc | 118 #define EXCEPTION_BAILOUT_CHECK_SCOPED(isolate, value) \ 122 return value; \ 139 #define RETURN_ESCAPED(value) return handle_scope.Escape(value); 633 void V8::Eternalize(Isolate* v8_isolate, Value* value, int* index) { 635 i::Object* object = *Utils::OpenHandle(value); 640 Local<Value> V8::GetEternal(Isolate* v8_isolate, int index) { 647 Utils::ApiCheck(false, "v8::FromJust", "Maybe value is Nothing."); 703 i::Object** HandleScope::CreateHandle(i::Isolate* isolate, i::Object* value) { 2574 i::Handle<i::Object> value = Utils::OpenHandle(*v8_value); local 2826 double value = obj->Number(); local 3388 i::Handle<i::Object> value; local 3753 i::Handle<i::FixedArray> value; local 3777 i::Handle<i::FixedArray> value; local 4458 i::Handle<i::Object> value = local 4570 static const uint32_t value = 0xFF00FF00; member in struct:v8::OneByteMask 4573 static const uint64_t value = V8_2PART_UINT64_C(0xFF00FF00, FF00FF00); member in struct:v8::OneByteMask 7609 Value* value = ToApi<Value>(i::Handle<i::Object>(p)); variable [all...] |