Lines Matching refs:tt
558 tt := (*interfaceType)(unsafe.Pointer(v.typ))
559 if uint(i) >= uint(len(tt.methods)) {
562 m := &tt.methods[i]
563 if !tt.nameOff(m.name).isExported() {
572 t = tt.typeOff(m.typ)
740 tt := (*ptrType)(unsafe.Pointer(v.typ))
741 typ := tt.elem
755 tt := (*structType)(unsafe.Pointer(v.typ))
756 if uint(i) >= uint(len(tt.fields)) {
759 field := &tt.fields[i]
844 tt := (*arrayType)(unsafe.Pointer(v.typ))
845 if uint(i) >= uint(tt.len) {
848 typ := tt.elem
867 tt := (*sliceType)(unsafe.Pointer(v.typ))
868 typ := tt.elem
1013 tt := (*arrayType)(unsafe.Pointer(v.typ))
1014 return int(tt.len)
1035 tt := (*mapType)(unsafe.Pointer(v.typ))
1044 key = key.assignTo("reflect.Value.MapIndex", tt.key, nil)
1056 typ := tt.elem
1076 tt := (*mapType)(unsafe.Pointer(v.typ))
1077 keyType := tt.key
1165 tt := (*structType)(unsafe.Pointer(v.typ))
1166 return len(tt.fields)
1287 tt := (*chanType)(unsafe.Pointer(v.typ))
1288 if ChanDir(tt.dir)&RecvDir == 0 {
1291 t := tt.elem
1320 tt := (*chanType)(unsafe.Pointer(v.typ))
1321 if ChanDir(tt.dir)&SendDir == 0 {
1325 x = x.assignTo("reflect.Value.Send", tt.elem, nil)
1467 tt := (*mapType)(unsafe.Pointer(v.typ))
1468 key = key.assignTo("reflect.Value.SetMapIndex", tt.key, nil)
1480 val = val.assignTo("reflect.Value.SetMapIndex", tt.elem, nil)
1545 tt := (*arrayType)(unsafe.Pointer(v.typ))
1546 cap = int(tt.len)
1547 typ = (*sliceType)(unsafe.Pointer(tt.slice))
1604 tt := (*arrayType)(unsafe.Pointer(v.typ))
1605 cap = int(tt.len)
1606 typ = (*sliceType)(unsafe.Pointer(tt.slice))
1694 tt := (*interfaceType)(unsafe.Pointer(v.typ))
1695 if uint(i) >= uint(len(tt.methods)) {
1698 m := &tt.methods[i]
1978 tt := (*chanType)(unsafe.Pointer(ch.typ))
1979 if ChanDir(tt.dir)&SendDir == 0 {
1983 rc.typ = &tt.rtype
1989 v = v.assignTo("reflect.Select", tt.elem, nil)
2006 tt := (*chanType)(unsafe.Pointer(ch.typ))
2007 if ChanDir(tt.dir)&RecvDir == 0 {
2011 rc.typ = &tt.rtype
2012 rc.val = unsafe_New(tt.elem)
2018 tt := (*chanType)(unsafe.Pointer(runcases[chosen].typ))
2019 t := tt.elem