Home
last modified time | relevance | path

Searched refs:SpecialTypes (Results 1 – 8 of 8) sorted by relevance

/external/syzkaller/prog/
Dprog_test.go186 for special, gen := range target.SpecialTypes {
206 for i := 0; i < iters/len(target.SpecialTypes); i++ {
Dmutation.go317 gen := r.target.SpecialTypes[t.Name()]
331 if gen := r.target.SpecialTypes[t.Name()]; gen != nil {
380 if ma.target.SpecialTypes[typ.Name()] == nil || ignoreSpecial {
386 if ma.target.SpecialTypes[typ.Name()] == nil && len(typ.Fields) == 1 || ignoreSpecial {
Dtarget.go41 SpecialTypes map[string]func(g *Gen, typ Type, old Arg) (Arg, []*Call) member
Drand.go526 if gen := r.target.SpecialTypes[typ.Name()]; gen != nil {
/external/syzkaller/sys/linux/
Dinit.go43 target.SpecialTypes = map[string]func(g *prog.Gen, typ prog.Type, old prog.Arg) (
/external/clang/lib/Serialization/
DASTWriter.cpp4406 RecordData SpecialTypes; in WriteASTCore() local
4407 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore()
4408 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore()
4409 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore()
4410 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore()
4411 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore()
4412 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore()
4413 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore()
4414 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore()
4519 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
DASTReader.cpp2699 if (SpecialTypes.empty()) { in ReadASTBlock()
2701 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock()
2705 if (SpecialTypes.size() != Record.size()) { in ReadASTBlock()
2712 if (!SpecialTypes[I]) in ReadASTBlock()
2713 SpecialTypes[I] = ID; in ReadASTBlock()
3940 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext()
3941 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext()
3946 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext()
3967 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext()
3988 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext()
[all …]
/external/clang/include/clang/Serialization/
DASTReader.h769 SmallVector<uint64_t, 16> SpecialTypes; variable