HomeSort by: relevance | last modified time | path
    Searched refs:Small (Results 1 - 25 of 77) sorted by relevancy

1 2 3 4

  /src/lib/libcurses/PSD.doc/
appen.C 69 .sh 3 "A Small Screen Manipulator"
  /src/external/apache2/llvm/dist/llvm/include/llvm/Target/
CodeGenCWrappers.h 36 return CodeModel::Small;
44 return CodeModel::Small;
51 case CodeModel::Small:
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CodeGen.h 28 enum Model { Tiny, Small, Kernel, Medium, Large };
37 enum Level { Default=0, Small=1, Large=2 };
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiTargetObjectFile.cpp 25 cl::desc("Small data and bss section threshold size (default=0)"),
38 // A address must be loaded from a small section if its size is less than the
39 // small section size threshold. Data in this section must be addressed using
42 // gcc has traditionally not treated zero-sized objects as small data, so this
47 // Return true if this global address should be placed into small data/bss
51 if (GO == nullptr) return TM.getCodeModel() == CodeModel::Small;
62 // Return true if this global address should be placed into small data/bss
70 // Return true if this global address should be placed into small data/bss
78 if (!GVA) return TM.getCodeModel() == CodeModel::Small;
86 if (TM.getCodeModel() == CodeModel::Small)
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithCustomObjectLinkingLayer/
LLJITWithCustomObjectLinkingLayer.cpp 39 // Detect the host and set code model to small.
41 JTMB.setCodeModel(CodeModel::Small);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreTargetMachine.cpp 35 if (*CM != CodeModel::Small && *CM != CodeModel::Large)
36 report_fatal_error("Target only supports CodeModel Small or Large");
39 return CodeModel::Small;
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kSubtarget.cpp 85 // - GOT is reachable within 16 bit offset for both Small and Medium models.
89 // | Small | Medium
131 case CodeModel::Small:
177 case CodeModel::Small:
M68kTargetMachine.cpp 75 return CodeModel::Small;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 115 // If the capacity of the array is huge, and the # elements used is small,
893 unsigned Small : 1;
903 /// a large bucket. This union will be discriminated by the 'Small' bit.
940 if (Small && RHS.Small) {
969 if (!Small && !RHS.Small) {
975 SmallDenseMap &SmallSide = Small ? *this : RHS;
976 SmallDenseMap &LargeSide = Small ? RHS : *this;
978 // First stash the large side's rep and move the small side across
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCTargetMachine.cpp 38 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/
CSKYTargetMachine.cpp 48 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430TargetMachine.cpp 48 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/ibm-public/postfix/dist/mantools/
make_soho_readme 11 <title>Postfix Small/Home Office Hints and Tips</title>
20 <h1><img src="postfix-logo.jpg" width="203" height="98" ALT="">Postfix Small/Home Office Hints and Tips</h1>
26 <p> This document combines hints and tips for "small office/home
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRTargetMachine.cpp 51 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZSubtarget.cpp 106 // For the small model, all locally-binding symbols are in range.
107 if (CM == CodeModel::Small)
SystemZTargetMachine.cpp 110 // Small: BRASL can call any function and will use a stub if necessary.
122 // requirements of Small, so Small seems like the best default there.
129 // Any executable smaller than 4GB meets the requirements of Small,
148 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
149 return CodeModel::Small;
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VETargetMachine.cpp 87 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
JITTargetMachineBuilder.cpp 108 case CodeModel::Small:
109 OS << "Small";
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcTargetMachine.cpp 64 // abs32 Static Small text+data+bss linked below 2^32 bytes
67 // pic13 PIC_ Small GOT < 2^13 bytes
84 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium;
86 return CodeModel::Small;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
string.bench.cpp 60 enum class Length { Empty, Small, Large, Huge };
62 static constexpr const char* Names[] = {"Empty", "Small", "Large", "Huge"};
132 case Length::Small:
147 case Length::Small:
449 : RHLength::value == Length::Small
540 for (auto Lhs : {Length::Empty, Length::Small, Length::Large, Length::Huge}) {
543 {Length::Empty, Length::Small, Length::Large, Length::Huge}) {
557 for (auto L : {Length::Small, Length::Large, Length::Huge}) {
576 // Some small codegen thunks to easily see generated code.
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCTargetMachine.cpp 264 return CodeModel::Small;
266 return CodeModel::Small;
271 return CodeModel::Small;
  /src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
LLJITWithRemoteDebugging.cpp 213 JTMB.setCodeModel(CodeModel::Small);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFTargetMachine.cpp 72 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVTargetMachine.cpp 67 getEffectiveCodeModel(CM, CodeModel::Small), OL),
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/target/
llvm_target.ml 35 | Small

Completed in 60 milliseconds

1 2 3 4