HomeSort by relevance Sort by last modified time
    Searched refs:Src (Results 1 - 25 of 1219) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vp8/common/
common.h 26 #define vp8_copy(Dest, Src) \
28 assert(sizeof(Dest) == sizeof(Src)); \
29 memcpy(Dest, Src, sizeof(Src)); \
34 #define vp8_copy_array(Dest, Src, N) \
36 assert(sizeof(*Dest) == sizeof(*Src)); \
37 memcpy(Dest, Src, N * sizeof(*Src)); \
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
Misc.h 25 @param Src The line structure to free.
29 IN EFI_EDITOR_LINE *Src
35 @param Src The line structure to copy from.
42 IN EFI_EDITOR_LINE *Src
Misc.c 21 @param Src The line structure to copy from.
28 IN EFI_EDITOR_LINE *Src
43 Dest->Buffer = CatSPrint (NULL, L"%s", Src->Buffer);
53 Dest->Size = Src->Size;
55 Dest->Type = Src->Type;
56 Dest->Link = Src->Link;
64 @param Src The line structure to free.
68 IN EFI_EDITOR_LINE *Src
71 if (Src == NULL) {
77 SHELL_FREE_NON_NULL (Src->Buffer);
    [all...]
  /external/v8/src/base/
safe_conversions_impl.h 13 #include "src/base/logging.h"
14 #include "src/base/macros.h"
36 // A range for a given nunmeric Src type is contained for a given numeric Dst
37 // type if both numeric_limits<Src>::max() <= numeric_limits<Dst>::max() and
38 // numeric_limits<Src>::min() >= numeric_limits<Dst>::min() are true.
51 typename Src,
56 std::numeric_limits<Src>::is_signed
61 // Same sign: Dst is guaranteed to contain Src only if its range is equal or
63 template <typename Dst, typename Src, IntegerRepresentation Sign>
64 struct StaticDstRangeRelationToSrcRange<Dst, Src, Sign, Sign>
    [all...]
safe_math.h 11 #include "src/base/safe_math_impl.h"
55 template <typename Src>
56 CheckedNumeric(const CheckedNumeric<Src>& rhs)
59 template <typename Src>
60 CheckedNumeric(Src value, RangeConstraint validity)
65 template <typename Src>
66 CheckedNumeric(Src value) // NOLINT
69 STATIC_ASSERT(std::numeric_limits<Src>::is_specialized);
117 template <typename Src> CheckedNumeric& operator+=(Src rhs)
    [all...]
safe_conversions.h 13 #include "src/base/safe_conversions_impl.h"
20 template <typename Dst, typename Src>
21 inline bool IsValueInRangeForNumericType(Src value) {
29 template <typename Dst, typename Src>
30 inline Dst checked_cast(Src value) {
38 template <typename Dst, typename Src>
39 inline Dst saturated_cast(Src value) {
  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 28 CAMLprim value llvm_link_modules(LLVMModuleRef Dst, LLVMModuleRef Src) {
29 if (LLVMLinkModules2(Dst, Src))
  /external/webrtc/webrtc/base/
safe_conversions_impl.h 11 // Borrowed from Chromium's src/base/numerics/safe_conversions_impl.h.
39 template <typename Dst, typename Src,
42 SrcSign IsSrcSigned = std::numeric_limits<Src>::is_signed ?
46 template <typename Dst, typename Src>
47 struct StaticRangeCheck<Dst, Src, DST_SIGNED, SRC_SIGNED> {
49 typedef std::numeric_limits<Src> SrcLimits;
56 (sizeof(Src) * 8 - 1);
61 template <typename Dst, typename Src>
62 struct StaticRangeCheck<Dst, Src, DST_UNSIGNED, SRC_UNSIGNED> {
63 static const DstRange value = sizeof(Dst) >= sizeof(Src)
    [all...]
safe_conversions.h 11 // Borrowed from Chromium's src/base/numerics/safe_conversions.h.
25 template <typename Dst, typename Src>
26 inline bool IsValueInRangeForNumericType(Src value) {
33 template <typename Dst, typename Src>
34 inline Dst checked_cast(Src value) {
42 template <typename Dst, typename Src>
43 inline Dst saturated_cast(Src value) {
  /external/llvm/tools/llvm-c-test/
echo.cpp 64 LLVMTypeRef Clone(LLVMValueRef Src) {
65 return Clone(LLVMTypeOf(Src));
68 LLVMTypeRef Clone(LLVMTypeRef Src) {
69 LLVMTypeKind Kind = LLVMGetTypeKind(Src);
88 return LLVMIntTypeInContext(Ctx, LLVMGetIntTypeWidth(Src));
90 unsigned ParamCount = LLVMCountParamTypes(Src);
94 LLVMGetParamTypes(Src, Params);
99 LLVMTypeRef FunTy = LLVMFunctionType(Clone(LLVMGetReturnType(Src)),
101 LLVMIsFunctionVarArg(Src));
108 const char *Name = LLVMGetStructName(Src);
    [all...]
  /external/llvm/lib/CodeGen/
MachineBranchProbabilityInfo.cpp 44 const MachineBasicBlock *Src,
46 return Src->getSuccProbability(Dst);
50 const MachineBasicBlock *Src, const MachineBasicBlock *Dst) const {
53 return getEdgeProbability(Src,
54 std::find(Src->succ_begin(), Src->succ_end(), Dst));
58 const MachineBasicBlock *Src, const MachineBasicBlock *Dst) const {
60 return getEdgeProbability(Src, Dst) > HotProb;
84 raw_ostream &OS, const MachineBasicBlock *Src,
87 const BranchProbability Prob = getEdgeProbability(Src, Dst)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /external/llvm/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
MachineBranchProbabilityInfo.h 49 BranchProbability getEdgeProbability(const MachineBasicBlock *Src,
52 // Same as above, but using a const_succ_iterator from Src. This is faster
55 getEdgeProbability(const MachineBasicBlock *Src,
59 bool isEdgeHot(const MachineBasicBlock *Src,
67 // however the value is never equal to 0, and can be 1 only iff SRC block
70 const MachineBasicBlock *Src,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm-c/
Linker.h 35 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 91011>>