const time.hasMonotonic

19 uses

	time (current package)
		format.go#L454: 	if t.wall&hasMonotonic != 0 {
		time.go#L151: 	hasMonotonic = 1 << 63
		time.go#L169: 	if t.wall&hasMonotonic != 0 {
		time.go#L180: 	if t.wall&hasMonotonic != 0 {
		time.go#L184: 			t.wall = t.wall&nsecMask | uint64(dsec)<<nsecShift | hasMonotonic
		time.go#L207: 	if t.wall&hasMonotonic != 0 {
		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#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#L872: 		now = Time{hasMonotonic, runtimeNano() - startNano, nil}
		time.go#L883: 	if t.wall&hasMonotonic != 0 {
		time.go#L885: 		now = Time{hasMonotonic, runtimeNano() - startNano, nil}
		time.go#L1073: 	return Time{hasMonotonic | uint64(sec)<