Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TFlag (0.04 sec)

  1. src/reflect/type.go

    			// as the 'u uncommonType' field won't be accessed except when
    			// tflag&abi.TFlagUncommon is set.
    			return addToCache(toType(t))
    		}
    	}
    
    	typ.Str = resolveReflectName(newName(str, "", false, false))
    	if isRegularMemory(toType(&typ.Type)) {
    		typ.TFlag = abi.TFlagRegularMemory
    	} else {
    		typ.TFlag = 0
    	}
    	typ.Hash = hash
    	typ.Size_ = size
    	typ.PtrBytes = typeptrdata(&typ.Type)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    			gctyp = (*_type)(unsafe.Pointer(progSpan.base()))
    			gctyp.Size_ = typ.Size_
    			gctyp.PtrBytes = typ.PtrBytes
    			gctyp.GCData = (*byte)(add(unsafe.Pointer(progSpan.base()), heapBitsOff))
    			gctyp.TFlag = abi.TFlagUnrolledBitmap
    
    			// Expand the GC program into space reserved at the end of the new span.
    			runGCProg(addb(typ.GCData, 4), gctyp.GCData)
    		}
    
    		// Write out the header.
    		*header = gctyp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top