HomeSort by relevance Sort by last modified time
    Searched refs:Rest (Results 51 - 66 of 66) sorted by null

1 23

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 417 // indexes into the array implied by the pointer operand; the rest of
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 411 StringRef Rest = AliasName.substr(Pos);
412 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
416 if (Symbol.isUndefined() && Rest.startswith("@@") &&
417 !Rest.startswith("@@@"))
    [all...]
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 838 NodeSet Rest;
861 Rest.insert(R);
867 for (auto R : Rest) {
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 367 const uint8_t Rest = ThisNopLength - Prefixes;
368 for (uint8_t i = 0; i < Rest; i++)
369 OW->write8(Nops[Rest - 1][i]);
  /external/skia/src/core/
SkLiteDL.cpp 36 template <typename S, typename... Rest>
37 static void copy_v(void* dst, const S* src, int n, Rest&&... rest) {
41 copy_v(SkTAddOffset<void>(dst, n*sizeof(S)), std::forward<Rest>(rest)...);
  /external/skqp/src/core/
SkLiteDL.cpp 36 template <typename S, typename... Rest>
37 static void copy_v(void* dst, const S* src, int n, Rest&&... rest) {
41 copy_v(SkTAddOffset<void>(dst, n*sizeof(S)), std::forward<Rest>(rest)...);
  /external/pdfium/third_party/lcms/src/
cmsopt.c 914 cmsS15Fixed16Number c0, c1, c2, c3, Rest;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 227 StringRef Rest = AliasName.substr(Pos);
228 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
232 if (Symbol.isUndefined() && Rest.startswith("@@") &&
233 !Rest.startswith("@@@"))
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 156 Rest,
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data_enum.cpp 69 {0x1f31df1e, L"rest", XFA_AttributeEnum::Rest},
cxfa_layoutpagemgr.cpp     [all...]
  /external/skqp/dm/
DM.cpp 253 template <typename... Rest>
254 static constexpr int max_of(int x, Rest... rest) {
255 return x > max_of(rest...) ? x : max_of(rest...);
694 // few sample sizes. Skip the rest.
    [all...]
  /external/skia/dm/
DM.cpp 255 template <typename... Rest>
256 static constexpr int max_of(int x, Rest... rest) {
257 return x > max_of(rest...) ? x : max_of(rest...);
696 // few sample sizes. Skip the rest.
    [all...]
  /external/catch2/single_include/catch2/
catch.hpp 642 template <typename T, typename... Rest>
643 inline constexpr auto is_unique<T, Rest...> = std::bool_constant<
644 (!std::is_same_v<T, Rest> && ...) && is_unique<Rest...>
651 template <typename T0, typename T1, typename... Rest>
652 struct is_unique<T0, T1, Rest...> : std::integral_constant
655 && is_unique<T0, Rest...>::value
656 && is_unique<T1, Rest...>::value
769 , typename...Rest
771 struct append< L1<E1...>, L2<E2...>, Rest...>
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 560 llvm::BasicBlock *Rest = createBasicBlock("not.null");
561 Builder.CreateCondBr(IsNonNull, Rest, Done);
562 EmitBlock(Rest);
    [all...]
  /external/boringssl/src/ssl/test/runner/
common.go 179 // Rest of these are reserved by the TLS spec
    [all...]

Completed in 665 milliseconds

1 23