time.Time.wall (field)

28 uses

	time (current package)
		format.go#L454: 	if t.wall&hasMonotonic != 0 {
		time.go#L139: 	wall uint64
		time.go#L164: 	return int32(t.wall & nsecMask)
		time.go#L169: 	if t.wall&hasMonotonic != 0 {
		time.go#L170: 		return wallToInternal + int64(t.wall<<1>>(nsecShift+1))
		time.go#L180: 	if t.wall&hasMonotonic != 0 {
		time.go#L181: 		sec := int64(t.wall << 1 >> (nsecShift + 1))
		time.go#L184: 			t.wall = t.wall&nsecMask | uint64(dsec)<time.go#L207: 	if t.wall&hasMonotonic != 0 {
		time.go#L209: 		t.wall &= nsecMask
		time.go#L218: 	if t.wall&hasMonotonic == 0 {
		time.go#L223: 		t.wall |= hasMonotonic | uint64(sec-minWall)<time.go#L234: 	if t.wall&hasMonotonic == 0 {
		time.go#L242: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L252: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L266: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L823: 	t.wall = t.wall&^nsecMask | uint64(nsec) // update nsec
		time.go#L825: 	if t.wall&hasMonotonic != 0 {
		time.go#L842: 	if t.wall&u.wall&hasMonotonic != 0 {
		time.go#L870: 	if t.wall&hasMonotonic != 0 {
		time.go#L883: 	if t.wall&hasMonotonic != 0 {
		time.go#L1210: 	t.wall = uint64(nsec)