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

1 2 3 45 6 7 8 91011>>

  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
vector_support_library.h 22 #include "llvm/IR/Value.h"
50 llvm::Value* Mul(llvm::Value* lhs, llvm::Value* rhs);
51 llvm::Value* Mul(int64 lhs, llvm::Value* rhs) {
54 llvm::Value* Mul(const llvm::APFloat& lhs, llvm::Value* rhs) {
60 llvm::Value* Mul(double lhs, llvm::Value* rhs) = delete
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ValueTracking.h 24 class Value;
39 void ComputeMaskedBits(Value *V, const APInt &Mask, APInt &KnownZero,
45 void ComputeSignBit(Value *V, bool &KnownZero, bool &KnownOne,
48 /// isPowerOfTwo - Return true if the given value is known to have exactly one
52 bool isPowerOfTwo(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
54 /// isKnownNonZero - Return true if the given value is known to be non-zero
58 bool isKnownNonZero(Value *V, const TargetData *TD = 0, unsigned Depth = 0);
69 bool MaskedValueIsZero(Value *V, const APInt &Mask,
81 unsigned ComputeNumSignBits(Value *Op, const TargetData *TD = 0,
89 bool ComputeMultiple(Value *V, unsigned Base, Value *&Multiple
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PostCodeLib.h 22 Sends a 32-bit value to a POST card.
24 Sends the 32-bit value specified by Value to a POST card, and returns Value.
26 directly to a POST card device. Other implementations may send Value to
28 display the 32-bit value on the status reporting device.
32 PostCode() must return Value immediately.
34 @param Value The 32-bit value to write to the POST card.
36 @return The 32-bit value to write to the POST card.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseIoLibIntrinsic/
IoLib.c 20 Reads the 64-bit I/O port specified by Port. The 64-bit read value is returned.
29 @return The value read.
45 Writes the 64-bit I/O port specified by Port with the value specified by Value
46 and returns Value. This function must guarantee that all I/O read and write
53 @param Value The value to write to the I/O port.
55 @return The value written the I/O port.
62 IN UINT64 Value
73 Reads the 8-bit MMIO register specified by Address. The 8-bit read value is
    [all...]
  /external/webrtc/webrtc/base/
json.h 30 bool GetIntFromJson(const Json::Value& in, int* out);
31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
32 bool GetStringFromJson(const Json::Value& in, std::string* out);
33 bool GetBoolFromJson(const Json::Value& in, bool* out);
34 bool GetDoubleFromJson(const Json::Value& in, double* out);
37 bool GetValueFromJsonArray(const Json::Value& in, size_t n,
38 Json::Value* out);
39 bool GetIntFromJsonArray(const Json::Value& in, size_t n,
41 bool GetUIntFromJsonArray(const Json::Value& in, size_t n,
43 bool GetStringFromJsonArray(const Json::Value& in, size_t n
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
LongJump.c 34 If Value is 0, then ASSERT().
37 @param Value The value to return when the SetJump() context is restored.
44 IN UINTN Value
48 ASSERT (Value != 0);
50 InternalLongJump (JumpBuffer, Value);
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
LongJump.c 29 If Value is 0, then ASSERT().
32 @param Value The value to return when the SetJump() context is
40 IN UINTN Value
44 ASSERT (Value != 0);
46 InternalLongJump (JumpBuffer, Value);
  /external/capstone/
MathExtras.h 38 /// Hi_32 - This function returns the high 32 bits of a 64 bit value.
39 static inline uint32_t Hi_32(uint64_t Value) {
40 return (uint32_t)(Value >> 32);
43 /// Lo_32 - This function returns the low 32 bits of a 64 bit value.
44 static inline uint32_t Lo_32(uint64_t Value) {
45 return (uint32_t)(Value);
63 static inline bool isMask_32(uint32_t Value) {
64 return Value && ((Value + 1) & Value) == 0
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 19 import com.google.clearsilver.jsilver.values.Value;
29 Value execute(Value... args);
  /external/perf_data_converter/src/quipper/
perf_option_parser.cc 16 Boolean, // has no value
17 Value, // Uses another argument.
22 {"-e", OptionType::Value},
23 {"--event", OptionType::Value},
24 {"--filter", OptionType::Value},
25 {"-p", OptionType::Value},
26 {"--pid", OptionType::Value},
27 {"-t", OptionType::Value},
28 {"--tid", OptionType::Value},
29 {"-r", OptionType::Value},
    [all...]
  /external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
p2-0x.cpp 4 struct Value {
5 constexpr Value(int n) : n(n) {}
16 void test(Value v) {
20 case Value(2):
27 case Value(2):
36 case Value(2):
  /external/llvm/include/llvm/Support/
LEB128.h 22 /// Utility function to encode a SLEB128 value to an output stream.
23 inline void encodeSLEB128(int64_t Value, raw_ostream &OS) {
26 uint8_t Byte = Value & 0x7f;
28 Value >>= 7;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
37 /// Utility function to encode a ULEB128 value to an output stream.
38 inline void encodeULEB128(uint64_t Value, raw_ostream &OS,
41 uint8_t Byte = Value & 0x7f;
42 Value >>= 7
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
WriteCr0.c 20 UINTN Value
24 mov eax, Value
WriteCr2.c 20 UINTN Value
24 mov eax, Value
WriteCr3.c 20 UINTN Value
24 mov eax, Value
WriteDr0.c 20 IN UINTN Value
24 mov eax, Value
WriteDr1.c 20 IN UINTN Value
24 mov eax, Value
WriteDr2.c 20 IN UINTN Value
24 mov eax, Value
WriteDr3.c 20 IN UINTN Value
24 mov eax, Value
WriteDr6.c 20 IN UINTN Value
24 mov eax, Value
WriteDr7.c 20 IN UINTN Value
24 mov eax, Value
WriteMm0.c 20 IN UINT64 Value
24 movq mm0, qword ptr [Value]
WriteMm1.c 20 IN UINT64 Value
24 movq mm1, qword ptr [Value]
WriteMm2.c 20 IN UINT64 Value
24 movq mm2, qword ptr [Value]
WriteMm3.c 20 IN UINT64 Value
24 movq mm3, qword ptr [Value]

Completed in 412 milliseconds

1 2 3 45 6 7 8 91011>>