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

1 2 3 4 5 6 7 8 9

  /external/libunwind/src/aarch64/
gen-offsets.c 9 #define SC(N,X) \
30 SC ("R0", regs[0]);
31 SC ("R1", regs[1]);
32 SC ("R2", regs[2]);
33 SC ("R3", regs[3]);
34 SC ("R4", regs[4]);
35 SC ("R5", regs[5]);
36 SC ("R6", regs[6]);
37 SC ("R7", regs[7]);
38 SC ("R8", regs[8])
    [all...]
  /external/libunwind/src/arm/
gen-offsets.c 9 #define SC(N,X) \
31 SC ("TRAPNO", trap_no);
32 SC ("ERRORCODE", error_code);
33 SC ("OLDMASK", oldmask);
34 SC ("R0", arm_r0);
35 SC ("R1", arm_r1);
36 SC ("R2", arm_r2);
37 SC ("R3", arm_r3);
38 SC ("R4", arm_r4);
39 SC ("R5", arm_r5)
    [all...]
  /external/libunwind/src/sh/
gen-offsets.c 9 #define SC(N,X) \
30 SC ("R0", sc_regs[0]);
31 SC ("R1", sc_regs[1]);
32 SC ("R2", sc_regs[2]);
33 SC ("R3", sc_regs[3]);
34 SC ("R4", sc_regs[4]);
35 SC ("R5", sc_regs[5]);
36 SC ("R6", sc_regs[6]);
37 SC ("R7", sc_regs[7]);
38 SC ("R8", sc_regs[8])
    [all...]
  /external/jemalloc/include/jemalloc/internal/
size_classes.h 10 * SIZE_CLASSES: Complete table of SC(index, lg_grp, lg_delta, ndelta, psz,
37 SC( 0, 3, 3, 0, no, yes, 3) \
38 SC( 1, 3, 3, 1, no, yes, 3) \
39 SC( 2, 3, 3, 2, no, yes, 3) \
40 SC( 3, 3, 3, 3, no, yes, 3) \
42 SC( 4, 5, 3, 1, no, yes, 3) \
43 SC( 5, 5, 3, 2, no, yes, 3) \
44 SC( 6, 5, 3, 3, no, yes, 3) \
45 SC( 7, 5, 3, 4, no, yes, 3) \
47 SC( 8, 6, 4, 1, no, yes, 4)
    [all...]
  /external/jemalloc_new/include/jemalloc/internal/
size_classes.h 13 * SIZE_CLASSES: Complete table of SC(index, lg_grp, lg_delta, ndelta, psz,
43 SC( 0, 3, 3, 0, no, yes, 1, 3) \
44 SC( 1, 3, 3, 1, no, yes, 1, 3) \
45 SC( 2, 3, 3, 2, no, yes, 3, 3) \
46 SC( 3, 3, 3, 3, no, yes, 1, 3) \
48 SC( 4, 5, 3, 1, no, yes, 5, 3) \
49 SC( 5, 5, 3, 2, no, yes, 3, 3) \
50 SC( 6, 5, 3, 3, no, yes, 7, 3) \
51 SC( 7, 5, 3, 4, no, yes, 1, 3) \
53 SC( 8, 6, 4, 1, no, yes, 5, 4)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
llvm-xray.cpp 31 for (auto *SC : cl::getRegisteredSubcommands()) {
32 if (*SC) {
35 if (SC == &*cl::TopLevelSubCommand) {
39 if (auto C = dispatch(SC)) {
xray-registry.h 23 // and associates it with |SC|. This requires that a command has not been
24 // registered to a given |SC|.
32 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
35 // Requires that |SC| is not null and has an associated function to it.
36 std::function<Error()> dispatch(cl::SubCommand *SC);
xray-registry.cpp 25 CommandRegistration::CommandRegistration(cl::SubCommand *SC,
27 assert(Commands->count(SC) == 0 &&
30 (*Commands)[SC] = Command;
33 HandlerType dispatch(cl::SubCommand *SC) {
34 auto It = Commands->find(SC);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
FormatUtil.cpp 193 using SC = COFF::SectionCharacteristics;
199 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NOLOAD, C, Style, "noload");
200 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NO_PAD, C, Style, "no padding");
201 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_CODE, C, Style, "code");
202 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_INITIALIZED_DATA, C, Style,
204 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_UNINITIALIZED_DATA, C, Style,
206 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_OTHER, C, Style, "other");
207 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_INFO, C, Style, "info");
208 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_REMOVE, C, Style, "remove");
209 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_COMDAT, C, Style, "comdat")
    [all...]
  /external/llvm/include/llvm/MC/
MCSubtargetInfo.h 120 const MCSchedClassDesc *SC) const {
121 return &WriteProcResTable[SC->WriteProcResIdx];
124 const MCSchedClassDesc *SC) const {
125 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
128 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC,
130 assert(DefIdx < SC->NumWriteLatencyEntries &&
133 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
136 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx,
141 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx]
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSubtargetInfo.h 121 const MCSchedClassDesc *SC) const {
122 return &WriteProcResTable[SC->WriteProcResIdx];
125 const MCSchedClassDesc *SC) const {
126 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
129 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC,
131 assert(DefIdx < SC->NumWriteLatencyEntries &&
134 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
137 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx,
142 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx]
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZHazardRecognizer.cpp 48 const MCSchedClassDesc *SC = getSchedClass(SU);
49 if (!SC->isValid())
52 if (SC->BeginGroup) {
53 if (!SC->EndGroup)
94 const MCSchedClassDesc *SC = getSchedClass(SU);
95 if (!SC->isValid())
100 if (SC->BeginGroup)
167 const MCSchedClassDesc *SC = getSchedClass(SU);
168 if (!SC->isValid())
172 PI = SchedModel->getWriteProcResBegin(SC),
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
TargetSchedule.h 100 const MCSchedClassDesc *SC = nullptr) const;
103 const MCSchedClassDesc *SC = nullptr) const;
107 const MCSchedClassDesc *SC = nullptr) const;
131 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const {
133 return STI->getWriteProcResBegin(SC);
135 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const {
136 return STI->getWriteProcResEnd(SC);
  /external/v8/src/
counters.h     [all...]
counters.cc 117 #define SC(name, caption) name##_(this, "c:" #caption),
118 STATS_COUNTER_TS_LIST(SC)
119 #undef SC
223 #define SC(name, caption) {&Counters::name##_, "c:" #caption},
224 STATS_COUNTER_LIST_1(SC) STATS_COUNTER_LIST_2(SC)
225 #undef SC
226 #define SC(name) \
229 INSTANCE_TYPE_LIST(SC)
230 #undef SC
    [all...]
  /external/llvm/include/llvm/CodeGen/
TargetSchedule.h 98 const MCSchedClassDesc *SC = nullptr) const;
122 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const {
124 return STI->getWriteProcResBegin(SC);
126 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const {
127 return STI->getWriteProcResEnd(SC);
  /external/libunwind/src/mips/
gen-offsets.c 8 #define SC(N,X) \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 113 fromCodeViewSubection(const codeview::StringsAndChecksumsRef &SC,
124 const codeview::StringsAndChecksums &SC);
127 fromDebugS(ArrayRef<uint8_t> Data, const codeview::StringsAndChecksumsRef &SC);
130 codeview::StringsAndChecksums &SC);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
TargetSchedule.cpp 87 const MCSchedClassDesc *SC) const {
89 if (!SC)
90 SC = resolveSchedClass(MI);
91 if (SC->isValid())
92 return SC->BeginGroup;
98 const MCSchedClassDesc *SC) const {
100 if (!SC)
101 SC = resolveSchedClass(MI);
102 if (SC->isValid())
103 return SC->EndGroup
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 445 template<typename SC, typename RetVal=void>
450 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
452 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
454 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
456 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
458 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
460 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
462 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
464 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
466 return ((SC*)this)->visitSMaxExpr((const SCEVSMaxExpr*)S)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ScalarEvolutionExpressions.h 459 template<typename SC, typename RetVal=void>
464 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
466 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
468 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
470 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
472 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
474 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
476 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
478 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
480 return ((SC*)this)->visitSMaxExpr((const SCEVSMaxExpr*)S)
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 438 template<typename SC, typename RetVal=void>
443 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
445 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
447 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
449 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
451 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
453 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
455 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
457 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
459 return ((SC*)this)->visitSMaxExpr((const SCEVSMaxExpr*)S)
    [all...]
  /external/jemalloc_new/src/
sz.c 9 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \
14 #undef SC
20 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \
23 #undef SC
93 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \
106 #undef SC
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
VPlanValue.h 50 VPValue(const unsigned char SC, Value *UV = nullptr)
51 : SubclassID(SC), UnderlyingVal(UV) {}
119 VPUser(const unsigned char SC) : VPValue(SC) {}
120 VPUser(const unsigned char SC, ArrayRef<VPValue *> Operands) : VPValue(SC) {
  /external/clang/test/OpenMP/
target_codegen_registration.cpp 28 // CHECK-DAG: [[SC:%.+]] = type { [16 x i32] }
43 // CHECK-DAG: [[C1:@.+]] = internal global [[SC]]
51 // CHECK-NTARGET-DAG: [[SC:%.+]] = type { [16 x i32] }
209 struct SC {
216 SC() {
222 ~SC() {
382 static SC c1;

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 9