HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 176 - 200 of 10179) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/lib/MC/
MCInstPrinter.cpp 69 static bool needsLeadingZero(uint64_t Value)
71 while(Value)
73 uint64_t digit = (Value >> 60) & 0xf;
76 Value <<= 4;
81 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const {
82 return format("%" PRId64, Value);
85 format_object<int64_t> MCInstPrinter::formatHex(int64_t Value) const {
88 if (Value < 0)
89 return format("-0x%" PRIx64, -Value);
91 return format("0x%" PRIx64, Value);
    [all...]
  /external/v8/src/inspector/
v8-console.h 35 v8::Local<v8::Name>, const v8::PropertyCallbackInfo<v8::Value>&);
37 v8::Local<v8::Value>,
50 static void debugCallback(const v8::FunctionCallbackInfo<v8::Value>&);
51 static void errorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
52 static void infoCallback(const v8::FunctionCallbackInfo<v8::Value>&);
53 static void logCallback(const v8::FunctionCallbackInfo<v8::Value>&);
54 static void warnCallback(const v8::FunctionCallbackInfo<v8::Value>&);
55 static void dirCallback(const v8::FunctionCallbackInfo<v8::Value>&);
56 static void dirxmlCallback(const v8::FunctionCallbackInfo<v8::Value>&);
57 static void tableCallback(const v8::FunctionCallbackInfo<v8::Value>&)
    [all...]
  /art/libartbase/base/
histogram.h 31 template <class Value> class Histogram {
37 friend class Histogram<Value>;
46 Histogram(const char* name, Value initial_bucket_width, size_t max_buckets = 100);
47 void AddValue(Value);
48 void AdjustAndAddValue(Value); // Add a value after dividing it by kAdjust.
65 Value GetRange(size_t bucket_idx) const;
72 Value Sum() const {
76 Value AdjustedSum() const {
80 Value Min() const
    [all...]
  /device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
generate_image.c 133 unsigned int Value;
142 fscanf(DataFile, "PRM_CLKSRC_CTRL=0x%08x\n", &Value);
143 CHSETTINGSData->PRM_CLKSRC_CTRL = Value;
144 fscanf(DataFile, "PRM_CLKSEL=0x%08x\n", &Value);
145 CHSETTINGSData->PRM_CLKSEL = Value;
146 fscanf(DataFile, "CM_CLKSEL1_EMU=0x%08x\n", &Value);
147 CHSETTINGSData->CM_CLKSEL1_EMU = Value;
150 fscanf(DataFile, "CM_CLKSEL_CORE=0x%08x\n", &Value);
151 CHSETTINGSData->CM_CLKSEL_CORE = Value;
152 fscanf(DataFile, "CM_CLKSEL_WKUP=0x%08x\n", &Value);
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
Value.java 33 * An immutable symbolic value for semantic interpretation of bytecode.
37 public interface Value {
40 * Returns the size of this value in words.
  /external/libmojo/mojo/public/cpp/bindings/
map.h 16 template <typename Key, typename Value>
17 std::unordered_map<Key, Value> MapToUnorderedMap(
18 const std::map<Key, Value>& input) {
19 return std::unordered_map<Key, Value>(input.begin(), input.end());
22 template <typename Key, typename Value>
23 std::unordered_map<Key, Value> MapToUnorderedMap(std::map<Key, Value>&& input) {
24 return std::unordered_map<Key, Value>(std::make_move_iterator(input.begin()),
28 template <typename Key, typename Value>
29 std::map<Key, Value> UnorderedMapToMap
    [all...]
  /external/llvm/include/llvm/CodeGen/GlobalISel/
Types.h 19 #include "llvm/IR/Value.h"
23 /// Map a value to a virtual register.
29 typedef DenseMap<const Value *, unsigned> ValueToVReg;
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 22 class Value;
37 /// <=> Value Definition
53 /// Non-NULL return value will be a true or false constant.
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
  /external/lzma/CPP/7zip/UI/Common/
Property.h 11 UString Value;
  /external/proguard/src/proguard/evaluation/value/
Category1Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 1 value.
28 public abstract class Category1Value extends Value
30 // Implementations for Value.
Category2Value.java 21 package proguard.evaluation.value;
24 * This abstract class represents a partially evaluated Category 2 value.
28 public abstract class Category2Value extends Value
30 // Implementations for Value.
  /frameworks/support/paging/runtime/src/main/java/androidx/paging/
LivePagedListProvider.java 31 public abstract class LivePagedListProvider<Key, Value> extends DataSource.Factory<Key, Value> {
34 public DataSource<Key, Value> create() {
39 protected abstract DataSource<Key, Value> createDataSource();
  /frameworks/support/room/compiler/src/test/data/common/input/
DataSource.java 20 public interface Factory<Key, Value> {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/GlobalISel/
Types.h 19 #include "llvm/IR/Value.h"
23 /// Map a value to a virtual register.
29 typedef DenseMap<const Value *, unsigned> ValueToVReg;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LowerMemIntrinsics.h 24 class Value;
29 Value *SrcAddr, Value *DstAddr, Value *CopyLen,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/GlobalISel/
Types.h 19 #include "llvm/IR/Value.h"
23 /// Map a value to a virtual register.
29 typedef DenseMap<const Value *, unsigned> ValueToVReg;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
LowerMemIntrinsics.h 24 class Value;
29 Value *SrcAddr, Value *DstAddr, Value *CopyLen,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/GlobalISel/
Types.h 19 #include "llvm/IR/Value.h"
23 /// Map a value to a virtual register.
29 typedef DenseMap<const Value *, unsigned> ValueToVReg;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
LowerMemIntrinsics.h 24 class Value;
29 Value *SrcAddr, Value *DstAddr, Value *CopyLen,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 24 class Value;
49 /// optimal value to replace the instruction with or 0 if a more
52 Value *optimizeCall(CallInst *CI);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
79 function_ref<void(Instruction *, Value *)> Replacer;
85 static void replaceAllUsesWithDefault(Instruction *I, Value *With)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 24 class Value;
49 /// optimal value to replace the instruction with or 0 if a more
52 Value *optimizeCall(CallInst *CI);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
79 function_ref<void(Instruction *, Value *)> Replacer;
85 static void replaceAllUsesWithDefault(Instruction *I, Value *With)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 24 class Value;
49 /// optimal value to replace the instruction with or 0 if a more
52 Value *optimizeCall(CallInst *CI);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
79 function_ref<void(Instruction *, Value *)> Replacer;
85 static void replaceAllUsesWithDefault(Instruction *I, Value *With)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/
SimplifyLibCalls.h 24 class Value;
49 /// optimal value to replace the instruction with or 0 if a more
52 Value *optimizeCall(CallInst *CI);
55 Value *optimizeMemCpyChk(CallInst *CI, IRBuilder<> &B);
56 Value *optimizeMemMoveChk(CallInst *CI, IRBuilder<> &B);
57 Value *optimizeMemSetChk(CallInst *CI, IRBuilder<> &B);
60 Value *optimizeStrpCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
61 Value *optimizeStrpNCpyChk(CallInst *CI, IRBuilder<> &B, LibFunc Func);
79 function_ref<void(Instruction *, Value *)> Replacer;
85 static void replaceAllUsesWithDefault(Instruction *I, Value *With)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/GlobalISel/
Types.h 19 #include "llvm/IR/Value.h"
23 /// Map a value to a virtual register.
29 typedef DenseMap<const Value *, unsigned> ValueToVReg;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LowerMemIntrinsics.h 24 class Value;
29 Value *SrcAddr, Value *DstAddr, Value *CopyLen,

Completed in 1341 milliseconds

1 2 3 4 5 6 78 91011>>