/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/Arm/ |
ScanMemGeneric.c | 23 Scans a target buffer for a 16-bit value, and returns a pointer to the
24 matching 16-bit value in the target buffer.
27 @param Length The count of 16-bit value to scan. Must be non-zero.
28 @param Value The value to search for in the target buffer.
38 IN UINT16 Value
45 if (*Pointer == Value) {
54 Scans a target buffer for a 32-bit value, and returns a pointer to the
55 matching 32-bit value in the target buffer.
58 @param Length The count of 32-bit value to scan. Must be non-zero. [all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/PeiIoLibCpuIo/ |
IoLib.c | 26 Reads the 8-bit I/O port specified by Port. The 8-bit read value is returned.
34 @return The value read.
56 Writes the 8-bit I/O port specified by Port with the value specified by Value
57 and returns Value. This function must guarantee that all I/O read and write
63 @param Value The value to write to the I/O port.
65 @return The value written the I/O port.
72 IN UINT8 Value
82 CpuIo->IoWrite8 (PeiServices, CpuIo, (UINT64) Port, Value);
[all...] |
/external/eigen/Eigen/src/Core/ |
Stride.h | 77 inline Index outer() const { return m_outer.value(); } 80 inline Index inner() const { return m_inner.value(); } 89 template<int Value> 90 class InnerStride : public Stride<0, Value> 92 typedef Stride<0, Value> Base; 100 template<int Value> 101 class OuterStride : public Stride<Value, 0> 103 typedef Stride<Value, 0> Base;
|
/external/llvm/include/llvm/IR/ |
ValueSymbolTable.h | 1 //===-- llvm/ValueSymbolTable.h - Implement a Value Symtab ------*- C++ -*-===// 10 // This file implements the name/Value symbol table for LLVM. 18 #include "llvm/IR/Value.h" 30 /// This class provides a symbol table of name/value pairs. It is essentially 31 /// a std::map<std::string,Value*> but has a controlled interface provided by 35 friend class Value; 47 typedef StringMap<Value*> ValueMap; 66 /// This method finds the value with the given \p Name in the 68 /// @returns the value associated with the \p Name 69 /// @brief Lookup a named Value [all...] |
InstrTypes.h | 78 static inline bool classof(const Value *V) { 282 UnaryInstruction(Type *Ty, unsigned iType, Value *V, 287 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE) 302 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value); 312 static inline bool classof(const Value *V) { 322 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryInstruction, Value) 333 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, 335 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty [all...] |
/external/llvm/include/llvm/MC/ |
MCSymbol.h | 41 /// The kind of the symbol. If it is any value other than unset then this 50 /// A symbol can contain an Offset, or Value, or be Common, but never more 59 // Special sentinal value for the absolute pseudo fragment. 64 /// The special AbsolutePseudoFragment value is for absolute symbols. 65 /// If this is a variable symbol, this caches the variable value's fragment. 71 /// If this is a fragment, then it gives the fragment this symbol's value is 126 /// The offset to apply to the fragment address to form this symbol's value. 132 /// If non-null, the value for a variable symbol. 133 const MCExpr *Value; 207 void setIsRegistered(bool Value) const { IsRegistered = Value; [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
SSAUpdater.h | 30 class Value; 36 /// transformation wants to rewrite a set of uses of one value with uses of a 42 /// This keeps track of which value to use on a per-block basis. When we 44 //typedef DenseMap<BasicBlock*, Value*> AvailableValsTy; 69 /// \brief Indicate that a rewritten value is available in the specified block 70 /// with the specified value. 71 void AddAvailableValue(BasicBlock *BB, Value *V); 73 /// \brief Return true if the SSAUpdater already has a value for the specified 77 /// \brief Construct SSA form, materializing a value that is live at the end 79 Value *GetValueAtEndOfBlock(BasicBlock *BB) [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldMachOX86_64.h | 53 RelocationValueRef Value; 55 Value = *ValueOrErr; 61 makeValueAddendPCRel(Value, RelI, 1 << RE.Size); 75 processGOTRelocation(RE, Value, Stubs); 77 RE.Addend = Value.Offset; 78 if (Value.SymbolName) 79 addRelocationForSymbol(RE, Value.SymbolName); 81 addRelocationForSection(RE, Value.SectionID); 87 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override { 88 DEBUG(dumpRelocationToResolve(RE, Value)); [all...] |
RuntimeDyldMachOARM.h | 93 RelocationValueRef Value; 95 Value = *ValueOrErr; 100 makeValueAddendPCRel(Value, RelI, 8); 103 processBranchRelocation(RE, Value, Stubs); 105 RE.Addend = Value.Offset; 106 if (Value.SymbolName) 107 addRelocationForSymbol(RE, Value.SymbolName); 109 addRelocationForSection(RE, Value.SectionID); 115 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override { 116 DEBUG(dumpRelocationToResolve(RE, Value)); [all...] |
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
WebAssemblyAsmBackend.cpp | 39 uint64_t Value, bool IsPCRel) const override; 44 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, 74 unsigned DataSize, uint64_t Value, 80 if (Value == 0) 83 // Shift the value into position. 84 Value <<= Info.TargetOffset; 90 // bits from the fixup value. 92 Data[Offset + i] |= uint8_t((Value >> (i * 8)) & 0xff);
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
SSAUpdater.h | 18 class Value; 30 /// transformation wants to rewrite a set of uses of one value with uses of a 36 /// AvailableVals - This keeps track of which value to use on a per-block 38 //typedef DenseMap<BasicBlock*, Value*> AvailableValsTy; 61 /// AddAvailableValue - Indicate that a rewritten value is available at the 62 /// end of the specified block with the specified value. 63 void AddAvailableValue(BasicBlock *BB, Value *V); 65 /// HasValueForBlock - Return true if the SSAUpdater already has a value for 69 /// GetValueAtEndOfBlock - Construct SSA form, materializing a value that is 71 Value *GetValueAtEndOfBlock(BasicBlock *BB) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
ValueSymbolTable.h | 1 //===- llvm/ValueSymbolTable.h - Implement a Value Symtab -------*- C++ -*-===// 10 // This file implements the name/Value symbol table for LLVM. 19 #include "llvm/IR/Value.h" 34 /// This class provides a symbol table of name/value pairs. It is essentially 35 /// a std::map<std::string,Value*> but has a controlled interface provided by 46 friend class Value; 52 using ValueMap = StringMap<Value*>; 71 /// This method finds the value with the given \p Name in the 73 /// @returns the value associated with the \p Name 74 /// Lookup a named Value [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
ValueList.h | 27 class Value; 37 /// The key of this vector is the placeholder constant, the value is the slot 38 /// number that holds the resolved value. 53 void push_back(Value *V) { ValuePtrs.emplace_back(V); } 60 Value *operator[](unsigned i) const { 65 Value *back() const { return ValuePtrs.back(); } 75 Value *getValueFwdRef(unsigned Idx, Type *Ty); 77 void assignValue(Value *V, unsigned Idx);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldMachOX86_64.h | 53 RelocationValueRef Value; 55 Value = *ValueOrErr; 61 makeValueAddendPCRel(Value, RelI, 1 << RE.Size); 75 processGOTRelocation(RE, Value, Stubs); 77 RE.Addend = Value.Offset; 78 if (Value.SymbolName) 79 addRelocationForSymbol(RE, Value.SymbolName); 81 addRelocationForSection(RE, Value.SectionID); 87 void resolveRelocation(const RelocationEntry &RE, uint64_t Value) override { 88 LLVM_DEBUG(dumpRelocationToResolve(RE, Value)); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/ |
CoverageExporterJson.h | 30 void emitSerialized(const int64_t Value); 33 void emitSerialized(const std::string &Value); 41 /// Emit a dictionary/object key but no value. 44 /// Emit a dictionary/object key/value pair. 46 void emitDictElement(const std::string &Key, const V &Value) { 50 emitSerialized(Value); 60 template <typename V> void emitArrayElement(const V &Value) { 62 emitSerialized(Value);
|
/external/testng/src/main/java/org/testng/mustache/ |
Model.java | 26 public Value resolveValue(String variable) { 29 Value value = resolveOnClass(object.subModel, variable); local 30 if (value != null) { 31 return value; 36 return new Value(m_model.get(variable)); 39 private Value resolveOnClass(Object object, String variable) { 52 return new Value(f.get(object)); 71 Value value = resolveValue(variable) local [all...] |
/device/linaro/bootloader/edk2/DuetPkg/Library/DxeCoreReportStatusCodeLibFromHob/ |
ReportStatusCodeLib.c | 24 Type, Value, Instance, CallerId, and Data. The result of this call is returned.
27 @param Value Status code value.
43 IN EFI_STATUS_CODE_VALUE Value,
53 return (*mStatusProtocol.ReportStatusCode) (Type, Value, Instance, (EFI_GUID *) CallerId, Data);
88 Converts a status code to an 8-bit POST code value.
90 Converts the status code specified by CodeType and Value to an 8-bit POST code
93 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
94 24..26 of Value., and TRUE is returned. Otherwise, FALSE is returned.
99 @param Value The status code value being converted. [all...] |
/external/google-breakpad/src/processor/ |
static_map-inl.h | 45 template<typename Key, typename Value, typename Compare> 46 StaticMap<Key, Value, Compare>::StaticMap(const char* raw_data) 60 template<typename Key, typename Value, typename Compare> 61 StaticMapIterator<Key, Value, Compare> 62 StaticMap<Key, Value, Compare>::find(const Key &key) const { 81 template<typename Key, typename Value, typename Compare> 82 StaticMapIterator<Key, Value, Compare> 83 StaticMap<Key, Value, Compare>::lower_bound(const Key &key) const { 102 template<typename Key, typename Value, typename Compare> 103 StaticMapIterator<Key, Value, Compare [all...] |
/external/llvm/include/llvm/Analysis/ |
ObjCARCAnalysisUtils.h | 77 inline const Value *GetUnderlyingObjCPtr(const Value *V, 89 /// The RCIdentity root of a value \p V is a dominating value U for which 104 inline const Value *GetRCIdentityRoot(const Value *V) { 114 /// Helper which calls const Value *GetRCIdentityRoot(const Value *V) and just 118 inline Value *GetRCIdentityRoot(Value *V) [all...] |
/external/llvm/include/llvm/CodeGen/ |
FunctionLoweringInfo.h | 48 class Value; 61 /// CanLowerReturn - true iff the function's return value can be lowered to 76 typedef SmallVector<const Value*, 1> SwiftErrorValues; 82 /// Track the virtual register for each swifterror value in a given basic 86 /// Map<const MachineBasicBlock*, Map<Value*, unsigned/*VReg*/>>. It 93 /// Track the virtual register for each swifterror value at the end of a basic 96 /// sure the swifterror value is in the correct virtual register. 101 /// failure when the value does not exist in swifterror map. 102 unsigned findSwiftErrorVReg(const MachineBasicBlock*, const Value*) const; 104 void setSwiftErrorVReg(const MachineBasicBlock *MBB, const Value*, unsigned) [all...] |
/external/llvm/test/MC/ARM/ |
thumb_set.s | 62 @ CHECK: Value: 0x1 68 @ CHECK: Value: 0x1 74 @ CHECK: Value: 0x1 80 @ CHECK: Value: 0x5 86 @ CHECK: Value: 0x5 92 @ CHECK: Value: 0x0 98 @ CHECK: Value: 0x7 104 @ CHECK: Value: 0x0 110 @ CHECK-NEXT: Value: 0x0 120 @ CHECK: Value: 0x [all...] |
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/ |
Value.java | 19 import com.google.auto.value.AutoValue; 25 * The actual point value for a {@link Point}. 27 * <p>Currently there are three types of {@link Value}: 35 * <p>Each {@link Point} contains exactly one of the three {@link Value} types. 41 public abstract class Value { 43 Value() {} 46 * Returns a double {@link Value}. 48 * @param value value in double. 49 * @return a double {@code Value} [all...] |
/external/pdfium/fxjs/ |
cjs_color.h | 26 CJS_Return set_black(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 29 CJS_Return set_blue(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 32 CJS_Return set_cyan(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 35 CJS_Return set_dark_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 38 CJS_Return set_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 41 CJS_Return set_green(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 44 CJS_Return set_light_gray(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 47 CJS_Return set_magenta(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 50 CJS_Return set_red(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); 53 CJS_Return set_transparent(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp) [all...] |
cjs_v8.h | 34 v8::Local<v8::Value> NewNull(); 35 v8::Local<v8::Value> NewUndefined(); 45 int ToInt32(v8::Local<v8::Value> pValue); 46 bool ToBoolean(v8::Local<v8::Value> pValue); 47 double ToDouble(v8::Local<v8::Value> pValue); 48 WideString ToWideString(v8::Local<v8::Value> pValue); 49 ByteString ToByteString(v8::Local<v8::Value> pValue); 50 v8::Local<v8::Object> ToObject(v8::Local<v8::Value> pValue); 51 v8::Local<v8::Array> ToArray(v8::Local<v8::Value> pValue); 54 CXFA_Object* ToXFAObject(v8::Local<v8::Value> obj) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
CodeMetrics.cpp | 30 appendSpeculatableOperands(const Value *V, 31 SmallPtrSetImpl<const Value *> &Visited, 32 SmallVectorImpl<const Value *> &Worklist) { 37 for (const Value *Operand : U->operands()) 43 static void completeEphemeralValues(SmallPtrSetImpl<const Value *> &Visited, 44 SmallVectorImpl<const Value *> &Worklist, 45 SmallPtrSetImpl<const Value *> &EphValues) { 54 const Value *V = Worklist[i]; 59 // If all uses of this value are ephemeral, then so is this value [all...] |