Searched refs:Value (Results 1 - 25 of 704) sorted by relevance

1234567891011>>

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Analysis/
H A DValueTracking.h22 class Value;
39 void ComputeMaskedBits(Value *V, APInt &KnownZero, APInt &KnownOne,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
53 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, bool OrZero = false,
60 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
71 bool MaskedValueIsZero(Value *V, const APInt &Mask,
83 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0,
91 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple,
98 bool CannotBeNegativeZero(const Value *
[all...]
H A DInstructionSimplify.h30 class Value;
34 Value *SimplifyAddInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
41 Value *SimplifySubInst(Value *LHS, Value *RHS, bool isNSW, bool isNUW,
48 Value *SimplifyMulInst(Value *LHS, Value *RH
[all...]
H A DLoads.h29 bool isSafeToLoadUnconditionally(Value *V, Instruction *ScanFrom,
49 Value *FindAvailableLoadedValue(Value *Ptr, BasicBlock *ScanBB,
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h21 class Value;
26 Value *CastToCStr(Value *V, IRBuilder<> &B);
31 Value *EmitStrLen(Value *Ptr, IRBuilder<> &B, const TargetData *TD,
37 Value *EmitStrNLen(Value *Ptr, Value *MaxLen, IRBuilder<> &B,
43 Value *EmitStrChr(Value *Pt
[all...]
H A DCmpInstAnalysis.h22 class Value;
37 /// <=> Value Definition
56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/macosx-10.10.1/CPANInternal-159.1/Time-HiRes-Value-0.07/examples/
H A Dtime.pl3 use Time::HiRes::Value;
5 my $start = Time::HiRes::Value->now();
9 my $duration = Time::HiRes::Value->now() - $start;
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D05-customxml.t38 print " ", $row->Element, " ", $row->Value, "\n";
39 ok($row->Element && $row->Value);
71 <Value>0.9991</Value>
75 <Value>0.0021</Value>
79 <Value>-0.0012</Value>
85 <Value>0.0458</Value>
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DLEB128.h23 static inline void encodeSLEB128(int64_t Value, raw_ostream &OS) { argument
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
38 static inline void encodeULEB128(uint64_t Value, raw_ostream &OS, argument
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7;
43 if (Value != 0 || Padding != 0)
46 } while (Value !
58 encodeULEB128(uint64_t Value, uint8_t *p, unsigned Padding = 0) argument
82 uint64_t Value = 0; local
[all...]
H A DMathExtras.h26 inline uint32_t Hi_32(uint64_t Value) { argument
27 return static_cast<uint32_t>(Value >> 32);
31 inline uint32_t Lo_32(uint64_t Value) { argument
32 return static_cast<uint32_t>(Value);
102 inline bool isMask_32(uint32_t Value) { argument
103 return Value && ((Value + 1) & Value) == 0;
109 inline bool isMask_64(uint64_t Value) { argument
110 return Value
116 isShiftedMask_32(uint32_t Value) argument
122 isShiftedMask_64(uint64_t Value) argument
128 isPowerOf2_32(uint32_t Value) argument
134 isPowerOf2_64(uint64_t Value) argument
140 ByteSwap_16(uint16_t Value) argument
146 ByteSwap_32(uint32_t Value) argument
152 ByteSwap_64(uint64_t Value) argument
160 CountLeadingZeros_32(uint32_t Value) argument
188 CountLeadingOnes_32(uint32_t Value) argument
196 CountLeadingZeros_64(uint64_t Value) argument
240 CountLeadingOnes_64(uint64_t Value) argument
248 CountTrailingZeros_32(uint32_t Value) argument
265 CountTrailingOnes_32(uint32_t Value) argument
273 CountTrailingZeros_64(uint64_t Value) argument
292 CountTrailingOnes_64(uint64_t Value) argument
299 CountPopulation_32(uint32_t Value) argument
311 CountPopulation_64(uint64_t Value) argument
325 Log2_32(uint32_t Value) argument
331 Log2_64(uint64_t Value) argument
338 Log2_32_Ceil(uint32_t Value) argument
344 Log2_64_Ceil(uint64_t Value) argument
443 RoundUpToAlignment(uint64_t Value, uint64_t Align) argument
450 OffsetToAlignment(uint64_t Value, uint64_t Align) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/XML/
H A Dcustomxml.pl15 print " ", $row->Element, " ", $row->Value, "\n";
47 <Value>0.9991</Value>
51 <Value>0.0021</Value>
55 <Value>-0.0012</Value>
61 <Value>0.0458</Value>
65 <Value>0.03
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DInMemoryStruct.h43 InMemoryStruct(reference Value) : Target(&Contents), Contents(Value) {} argument
44 InMemoryStruct(pointer Value) : Target(Value) {} argument
45 InMemoryStruct(const InMemoryStruct<T> &Value) { *this = Value; } argument
47 void operator=(const InMemoryStruct<T> &Value) { argument
48 if (Value.Target != &Value.Contents) {
49 Target = Value
[all...]
H A DStringSwitch.h55 StringSwitch& Case(const char (&S)[N], const T& Value) { argument
58 Result = &Value;
65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { argument
68 Result = &Value;
75 StringSwitch& StartsWith(const char (&S)[N], const T &Value) { argument
78 Result = &Value;
86 const T& Value) {
87 return Case(S0, Value).Case(S1, Value);
92 const char (&S2)[N2], const T& Value) {
85 Cases(const char (&S0)[N0], const char (&S1)[N1], const T& Value) argument
91 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T& Value) argument
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
[all...]
H A DStatistic.h39 volatile llvm::sys::cas_flag Value; member in class:llvm::Statistic
42 llvm::sys::cas_flag getValue() const { return Value; }
49 Value = 0; Initialized = 0;
53 operator unsigned() const { return Value; }
55 Value = Val;
64 sys::AtomicIncrement(&Value);
70 unsigned OldValue = Value;
71 sys::AtomicIncrement(&Value);
76 sys::AtomicDecrement(&Value);
82 unsigned OldValue = Value;
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/MC/
H A DMCObjectWriter.h112 void Write8(uint8_t Value) { argument
113 OS << char(Value);
116 void WriteLE16(uint16_t Value) { argument
117 Write8(uint8_t(Value >> 0));
118 Write8(uint8_t(Value >> 8));
121 void WriteLE32(uint32_t Value) { argument
122 WriteLE16(uint16_t(Value >> 0));
123 WriteLE16(uint16_t(Value >> 16));
126 void WriteLE64(uint64_t Value) { argument
127 WriteLE32(uint32_t(Value >>
131 WriteBE16(uint16_t Value) argument
136 WriteBE32(uint32_t Value) argument
141 WriteBE64(uint64_t Value) argument
146 Write16(uint16_t Value) argument
153 Write32(uint32_t Value) argument
160 Write64(uint64_t Value) argument
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dllvm-MathExtras.h26 inline uint32_t Hi_32(uint64_t Value) { argument
27 return static_cast<uint32_t>(Value >> 32);
31 inline uint32_t Lo_32(uint64_t Value) { argument
32 return static_cast<uint32_t>(Value);
102 inline bool isMask_32(uint32_t Value) { argument
103 return Value && ((Value + 1) & Value) == 0;
109 inline bool isMask_64(uint64_t Value) { argument
110 return Value
116 isShiftedMask_32(uint32_t Value) argument
122 isShiftedMask_64(uint64_t Value) argument
128 isPowerOf2_32(uint32_t Value) argument
134 isPowerOf2_64(uint64_t Value) argument
142 CountLeadingZeros_32(uint32_t Value) argument
170 CountLeadingOnes_32(uint32_t Value) argument
178 CountLeadingZeros_64(uint64_t Value) argument
222 CountLeadingOnes_64(uint64_t Value) argument
230 CountTrailingZeros_32(uint32_t Value) argument
247 CountTrailingOnes_32(uint32_t Value) argument
255 CountTrailingZeros_64(uint64_t Value) argument
274 CountTrailingOnes_64(uint64_t Value) argument
281 CountPopulation_32(uint32_t Value) argument
293 CountPopulation_64(uint64_t Value) argument
307 Log2_32(uint32_t Value) argument
313 Log2_64(uint64_t Value) argument
320 Log2_32_Ceil(uint32_t Value) argument
326 Log2_64_Ceil(uint64_t Value) argument
436 RoundUpToAlignment(uint64_t Value, uint64_t Align) argument
443 OffsetToAlignment(uint64_t Value, uint64_t Align) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/
H A DValue.h1 //===-- llvm/Value.h - Definition of the Value class ------------*- C++ -*-===//
10 // This file declares the Value class.
34 typedef StringMapEntry<Value*> ValueName;
45 // Value Class
49 /// computed by a program that may be used as operands to other values. Value is
51 /// All Values have a Type. Type is not a subclass of Value. Some values can
52 /// have a name and they belong to some Module. Setting the name on the Value
56 /// using this Value. A Value ca
61 class Value { class in namespace:llvm
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dtypedvalue.h61 template <class Value>
65 TypedValue(const Value &v) : mValue(v) { }
66 Value &value() { return mValue; }
67 operator Value &() { return mValue; }
68 void operator = (const Value &value) { mValue = value; }
71 Value mValue;
78 template <class Value>
79 void GenericValue::operator = (const Value &value)
80 { safer_cast<TypedValue<Value> &>(*this) = value; }
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dtypedvalue.h61 template <class Value>
65 TypedValue(const Value &v) : mValue(v) { }
66 Value &value() { return mValue; }
67 operator Value &() { return mValue; }
68 void operator = (const Value &value) { mValue = value; }
71 Value mValue;
78 template <class Value>
79 void GenericValue::operator = (const Value &value)
80 { safer_cast<TypedValue<Value> &>(*this) = value; }
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DIntrinsicInst.cpp34 static Value *CastOperand(Value *C) {
41 Value *DbgInfoIntrinsic::StripCast(Value *C) {
42 if (Value *CO = CastOperand(C)) {
46 if (Value *CO = CastOperand(GV->getInitializer()))
56 Value *DbgDeclareInst::getAddress() const {
67 const Value *DbgValueInst::getValue() const {
71 Value *DbgValueInst::getValue() {
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ADT/
H A DilistTest.cpp20 int Value; member in struct:__anon10547::Node
23 Node(int _Value) : Value(_Value) {}
29 EXPECT_EQ(1, List.back().Value);
34 EXPECT_EQ(2, List.back().Value);
35 EXPECT_EQ(2, List.front().getNextNode()->Value);
36 EXPECT_EQ(1, List.back().getPrevNode()->Value);
39 EXPECT_EQ(2, ConstList.back().Value);
40 EXPECT_EQ(2, ConstList.front().getNextNode()->Value);
41 EXPECT_EQ(1, ConstList.back().getPrevNode()->Value);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Object/
H A DMachOObject.cpp26 static void SwapValue(T &Value) { argument
27 Value = sys::SwapByteOrder(Value);
31 static void SwapStruct(T &Value);
171 void SwapStruct(macho::SegmentLoadCommand &Value) { argument
172 SwapValue(Value.Type);
173 SwapValue(Value.Size);
174 SwapValue(Value.VMAddress);
175 SwapValue(Value.VMSize);
176 SwapValue(Value
189 SwapStruct(macho::Segment64LoadCommand &Value) argument
207 SwapStruct(macho::SymtabLoadCommand &Value) argument
221 SwapStruct(macho::DysymtabLoadCommand &Value) argument
249 SwapStruct(macho::LinkeditDataLoadCommand &Value) argument
261 SwapStruct(macho::IndirectSymbolTableEntry &Value) argument
275 SwapStruct(macho::Section &Value) argument
297 SwapStruct(macho::Section64 &Value) argument
320 SwapStruct(macho::RelocationEntry &Value) argument
333 SwapStruct(macho::SymbolTableEntry &Value) argument
347 SwapStruct(macho::Symbol64TableEntry &Value) argument
361 SwapStruct(macho::DataInCodeTableEntry &Value) argument
[all...]
/macosx-10.10.1/CPANInternal-159.1/Time-HiRes-Value-0.07/t/
H A D02timing.t6 use Time::HiRes::Value;
8 my $start = Time::HiRes::Value->now();
12 my $end = Time::HiRes::Value->now();
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Assembly/
H A DWriter.h23 class Value;
32 void WriteAsOperand(raw_ostream &, const Value *, bool PrintTy = true,
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/NVPTX/
H A DNVPTXUtilities.h17 #include "llvm/Value.h"
36 bool isTexture(const llvm::Value &);
37 bool isSurface(const llvm::Value &);
38 bool isSampler(const llvm::Value &);
39 bool isImage(const llvm::Value &);
40 bool isImageReadOnly(const llvm::Value &);
41 bool isImageWriteOnly(const llvm::Value &);
43 std::string getTextureName(const llvm::Value &);
44 std::string getSurfaceName(const llvm::Value &);
45 std::string getSamplerName(const llvm::Value
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-diff/
H A DDiffConsumer.h27 class Value;
38 virtual void enterContext(Value *Left, Value *Right) = 0;
59 DiffContext(Value *L, Value *R)
61 Value *L;
62 Value *R;
65 DenseMap<Value*,unsigned> LNumbering;
66 DenseMap<Value*,unsigned> RNumbering;
74 void printValue(Value *
[all...]

Completed in 194 milliseconds

1234567891011>>