/external/llvm/lib/Transforms/Utils/ |
BypassSlowDivision.cpp | 13 // runtime it is profitable to check the value of the operands, and if they are 31 Value *Dividend; 32 Value *Divisor; 34 DivOpInfo(bool InSignedOp, Value *InDividend, Value *InDivisor) 75 // value of the operands and uses a shorter-faster div/rem instruction when 86 Value *Dividend = Instr->getOperand(0); 87 Value *Divisor = Instr->getOperand(1); 106 Value *SlowQuotientV; 107 Value *SlowRemainderV [all...] |
SymbolRewriter.cpp | 122 if (Value *T = (M.*Get)(Target)) 172 if (Value *V = (M.*Get)(Name)) 276 yaml::MappingNode *Value; 286 Value = dyn_cast<yaml::MappingNode>(Entry.getValue()); 287 if (!Value) { 294 return parseRewriteFunctionDescriptor(YS, Key, Value, DL); 296 return parseRewriteGlobalVariableDescriptor(YS, Key, Value, DL); 298 return parseRewriteGlobalAliasDescriptor(YS, Key, Value, DL); 315 yaml::ScalarNode *Value; 326 Value = dyn_cast<yaml::ScalarNode>(Field.getValue()) [all...] |
/external/llvm/test/DebugInfo/PDB/Inputs/ |
symbolformat.cpp | 9 Value, 14 Value, 68 TestEnum Enum = Value;
|
/external/llvm/tools/llvm-mc/ |
llvm-mc.cpp | 327 errs() << "error: defsym must be of the form: sym=value: " << I; 330 int64_t Value; 331 if(Pair.second.getAsInteger(0, Value)){ 332 errs() << "error: Value is not an integer: " << Pair.second; 338 MCConstantExpr::create(Value, Context));
|
/external/llvm/tools/llvm-readobj/ |
StreamWriter.h | 29 T Value; 37 HexNumber(char Value) : Value(static_cast<unsigned char>(Value)) { } 38 HexNumber(signed char Value) : Value(static_cast<unsigned char>(Value)) { } 39 HexNumber(signed short Value) : Value(static_cast<unsigned short>(Value)) { } [all...] |
/external/llvm/tools/yaml2obj/ |
yaml2coff.cpp | 237 value_type Value; 238 binary_le_impl(value_type V) : Value(V) {} 244 char Buffer[sizeof(BLE.Value)]; 246 Buffer, BLE.Value); 247 OS.write(Buffer, sizeof(BLE.Value)); 355 // mollifies certain tools which expect it to have a value greater than 467 OS << binary_le(i->Header.Value);
|
/external/llvm/utils/TableGen/ |
InstrInfoEmitter.cpp | 131 // Ptr value whose register class is resolved via callback. 233 /// for looking up the operand index for an instruction, given a value from 241 // Map of operand names to their enumeration value. This will be used to 517 uint64_t Value = 0; 520 Value |= uint64_t(Bit->getValue()) << i; 525 OS.write_hex(Value);
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
LzmaBench.cs | 34 UInt32 Value;
38 Value = 0;
46 result = Value & (((UInt32)1 << numBits) - 1);
47 Value >>= numBits;
52 result = (Value << numBits);
53 Value = RG.GetRnd();
54 result |= Value & (((UInt32)1 << numBits) - 1);
55 Value >>= numBits;
133 public override void SetLength(long value) { }
172 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime) [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_emulate_loops.c | 45 float Value; 91 struct const_value * value = data; local 92 if(value->Src->File != file || 93 value->Src->Index != index || 94 !(1 << GET_SWZ(value->Src->Swizzle, 0) & mask)){ 99 if(!rc_src_reg_is_immediate(value->C, inst->U.I.SrcReg[0].File, 103 value->HasValue = 1; 104 value->Value = 105 rc_get_constant_value(value->C [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
map_util.h | 57 // Returns a const reference to the value associated with the given key if it 68 // * It default constructs a value object even if it doesn't need to 111 // Returns a const reference to the value associated with the given key if it 112 // exists, otherwise returns a const reference to the provided default value. 114 // WARNING: If a temporary object is passed as the default "value," 118 // as the default "value," either use the returned value immediately 125 const typename Collection::value_type::second_type& value) { 128 return value; 133 // Returns a pointer to the const value associated with the given key if i 429 typename Collection::value_type::second_type& value = local [all...] |
/external/v8/src/ |
effects.h | 84 ? locator.value() : Effect::Unknown(Base::zone()); 97 effect = Effect::Seq(locator.value(), effect, Base::zone()); 111 effect = Effect::Alt(locator.value(), effect, Base::zone()); 187 typedef Effect Value; 300 locator->set_value(shadowed.value());
|
/external/v8/src/runtime/ |
runtime-typedarray.cc | 499 union Value { 504 Value value; local 511 FlipBytes<sizeof(T)>(value.bytes, source); 513 CopyBytes<sizeof(T)>(value.bytes, source); 515 *result = value.data; 539 union Value { 544 Value value; local 545 value.data = data [all...] |
/external/v8/test/cctest/compiler/ |
test-gap-resolver.cc | 60 typedef Key Value; 61 typedef std::map<Key, Value> OperandMap; 63 Value read(const InstructionOperand& op) const { 68 void write(const InstructionOperand& op, Value v) { 99 static Value ValueFor(const InstructionOperand& op) { return KeyFor(op); }
|
/external/v8/test/unittests/compiler/ |
control-equivalence-unittest.cc | 61 Node* Value() { return NumberConstant(0.0); } 64 return Store(graph()->NewNode(common()->Branch(), Value(), control));
|
/external/webrtc/webrtc/video/ |
overuse_frame_detector.cc | 86 int Value() const { 210 metrics_.encode_usage_percent = usage_->Value();
|
/frameworks/base/rs/java/android/renderscript/ |
Sampler.java | 30 public enum Value { 40 Value(int id) { 45 Value mMin; 46 Value mMag; 47 Value mWrapS; 48 Value mWrapT; 49 Value mWrapR; 60 public Value getMinification() { 67 public Value getMagnification() { 74 public Value getWrapS() [all...] |
/frameworks/base/services/core/java/com/android/server/accounts/ |
TokenCache.java | 38 private static class Value { 42 public Value(String token, long expiryEpochMillis) { 83 private static class TokenLruCache extends LruCache<Key, Value> { 116 protected int sizeOf(Key k, Value v) { 121 protected void entryRemoved(boolean evicted, Key k, Value oldVal, Value newVal) { 135 public void putToken(Key k, Value v) { 200 Value v = new Value(token, expiryMillis); 221 Value v = mCachedTokens.get(k) [all...] |
/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 57 // Whether the value is marked as translateable. 70 * Returns the source where this value was defined. 99 virtual bool equals(const Value* value) const = 0; 107 * Clone the value 199 StringPool::Ref value; member in struct:aapt::RawString 210 StringPool::Ref value; member in struct:aapt::String 221 StringPool::StyleRef value; member in struct:aapt::StyledString 252 android::Res_value value; member in struct:aapt::BinaryPrimitive 267 uint32_t value; member in struct:aapt::Attribute::Symbol 287 std::unique_ptr<Item> value; member in struct:aapt::Style::Entry [all...] |
/frameworks/opt/bitmap/src/com/android/bitmap/ |
ContiguousFIFOAggregator.java | 59 private final SparseArray<Value> mTasks; 78 mTasks = new SparseArray<Value>(); 107 mTasks.put(hash, new Value(callback, null)); 168 final Value value = mTasks.get(hash); local 169 if (value == null || task == null) { 176 value.task = task; 202 final Value value = mTasks.get(hash); local 203 if (value.task == null) 225 final Value value = mTasks.get(hash); local 260 final Value value = mTasks.get(hash); local [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Sampler.java | 43 public enum Value { 53 Value(int id) { 58 Value mMin; 59 Value mMag; 60 Value mWrapS; 61 Value mWrapT; 62 Value mWrapR; 72 public Value getMinification() { 79 public Value getMagnification() { 86 public Value getWrapS() [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
vc1parse_bitplane.c | 25 * input: value - bit value 32 //#define put_bit(value,x,y,mbx,mby,invert,outp) 33 static inline void put_bit( uint32_t value, int x, int y, int mbx, int mby, uint8_t invert, uint32_t* outp) 40 value ^= invert; 41 if (!value) return; /* assume buffer is initialized with zeros */ 55 * input: value - bit value 60 * returns bit value 66 uint8_t value; local 96 uint8_t value; local [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
meta.h | 44 static const bool Value = Cond;
58 template <typename C, typename T1, typename T2> struct SelectIf : SelectIfCond<C::Value, T1, T2> {};
67 template <typename C1, typename C2> struct AndExpr : AndExprCond<C1::Value, C2::Value>::Type {};
68 template <typename C1, typename C2> struct OrExpr : OrExprCond<C1::Value, C2::Value>::Type {};
91 BoolType<IsConst<CT>::Value >= IsConst<T>::Value> >::Type {};
102 : BoolType< ::std::is_base_of<B,D>::value> {};
122 enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) }; [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/ |
valuetest.cpp | 21 TEST(Value, DefaultConstructor) {
22 Value x;
26 //std::cout << "sizeof(Value): " << sizeof(x) << std::endl;
30 //TEST(Value, copy_constructor) {
31 // Value x(1234);
32 // Value y = x;
39 TEST(Value, Traits) {
40 typedef GenericValue<UTF8<>, CrtAllocator> Value;
41 static_assert(std::is_constructible<Value>::value, "");
[all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
wsdxmldom.h | 59 WCHAR *Value;
|
/prebuilts/go/darwin-x86/src/go/constant/ |
value.go | 9 // A special Unknown value may be used when a value 23 // Kind specifies the kind of value represented by a Value. 43 // A Value represents a mathematically exact value of a given Kind. 44 type Value interface { 45 // Kind returns the value kind; it is always the smallest 46 // kind in which the value can be represented exactly. 49 // String returns a human-readable form of the value [all...] |