HomeSort by relevance Sort by last modified time
    Searched full:newm (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /frameworks/compile/slang/tests/P_struct_matrix/
struct_matrix.rs 24 } newm;
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExtractFunction.cpp 136 Module *NewM = runPassesOn(M, LoopExtractPasses);
137 if (NewM == 0) {
148 if (M->size() == NewM->size() || --NumExtracted == 0) {
149 delete NewM;
152 assert(M->size() < NewM->size() && "Loop extract removed functions?");
153 Module::iterator MI = NewM->begin();
158 return NewM;
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 158 std::unique_ptr<Module> NewM = runPassesOn(M, LoopExtractPasses);
159 if (!NewM) {
170 if (M->size() == NewM->size() || --NumExtracted == 0) {
173 assert(M->size() < NewM->size() && "Loop extract removed functions?");
174 Module::iterator MI = NewM->begin();
179 return NewM;
  /prebuilts/go/darwin-x86/src/go/types/
type.go 333 newm := *tm
335 newm.typ = &newmtyp
336 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
337 allMethods = append(allMethods, &newm)
  /prebuilts/go/linux-x86/src/go/types/
type.go 333 newm := *tm
335 newm.typ = &newmtyp
336 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
337 allMethods = append(allMethods, &newm)
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 436 void CreateNewModule() { NewM = llvm::CloneModule(OldM).release(); }
440 Module *NewM;
444 EXPECT_FALSE(verifyModule(*NewM));
454 Function *NewF = NewM->getFunction("f");
  /prebuilts/go/darwin-x86/src/runtime/
sys_windows_386.s 310 // void tstart(M *newm);
312 MOVL newm+0(FP), CX // m
338 // uint32 tstart_stdcall(M *newm);
340 MOVL newm+0(FP), BX
sys_plan9_arm.s 209 //func tstart_plan9(newm *m)
211 MOVW newm+0(FP), R1
sys_solaris_amd64.s 125 // uint32 tstart_sysvicall(M *newm);
127 // DI contains first arg newm
sys_plan9_386.s 143 MOVL newm+0(FP), CX
sys_plan9_amd64.s 140 MOVQ newm+0(FP), CX
sys_windows_amd64.s 358 // uint32 tstart_stdcall(M *newm);
360 // CX contains first arg newm
  /prebuilts/go/linux-x86/src/runtime/
sys_windows_386.s 310 // void tstart(M *newm);
312 MOVL newm+0(FP), CX // m
338 // uint32 tstart_stdcall(M *newm);
340 MOVL newm+0(FP), BX
sys_plan9_arm.s 209 //func tstart_plan9(newm *m)
211 MOVW newm+0(FP), R1
sys_solaris_amd64.s 125 // uint32 tstart_sysvicall(M *newm);
127 // DI contains first arg newm
sys_plan9_386.s 143 MOVL newm+0(FP), CX
sys_plan9_amd64.s 140 MOVQ newm+0(FP), CX
sys_windows_amd64.s 358 // uint32 tstart_stdcall(M *newm);
360 // CX contains first arg newm
  /prebuilts/go/darwin-x86/src/encoding/gob/
type_test.go 113 var newm map[string]int
114 newMapStringInt := getTypeUnlocked("map1", reflect.TypeOf(newm))
type.go 754 newm := make(map[reflect.Type]*typeInfo)
757 newm[k] = v
759 newm[rt] = info
760 typeInfoMap.Store(newm)
  /prebuilts/go/linux-x86/src/encoding/gob/
type_test.go 113 var newm map[string]int
114 newMapStringInt := getTypeUnlocked("map1", reflect.TypeOf(newm))
type.go 754 newm := make(map[reflect.Type]*typeInfo)
757 newm[k] = v
759 newm[rt] = info
760 typeInfoMap.Store(newm)
  /external/icu/icu4c/source/i18n/
chnsecal.cpp 446 int32_t newM = (m + amount) % n;
447 if (newM < 0) {
448 newM += n;
451 if (newM != m) {
452 offsetMonth(moon, dom, newM - m);
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 498 ProgramState::GenericDataMap NewM = GDMFactory.remove(OldM, Key);
500 if (NewM == OldM)
504 NewState.GDM = NewM;
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 426 MachineMemOperand *NewM =
445 StI->addMemOperand(*MF, NewM);
467 StI->addMemOperand(*MF, NewM);

Completed in 5941 milliseconds

1 2 3 4