Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 138 for chars (0.11 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    	op_CLIY    uint32 = 0xEB55 // FORMAT_SIY        COMPARE LOGICAL (immediate)
    	op_CLM     uint32 = 0xBD00 // FORMAT_RS2        COMPARE LOGICAL CHAR. UNDER MASK (low)
    	op_CLMH    uint32 = 0xEB20 // FORMAT_RSY2       COMPARE LOGICAL CHAR. UNDER MASK (high)
    	op_CLMY    uint32 = 0xEB21 // FORMAT_RSY2       COMPARE LOGICAL CHAR. UNDER MASK (low)
    	op_CLR     uint32 = 0x1500 // FORMAT_RR         COMPARE LOGICAL (32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. src/syscall/types_openbsd.go

    	struct sockaddr_in s2;	// these pad it out
    	struct sockaddr_in6 s3;
    	struct sockaddr_un s4;
    	struct sockaddr_dl s5;
    };
    
    struct sockaddr_any {
    	struct sockaddr addr;
    	char pad[sizeof(union sockaddr_all) - sizeof(struct sockaddr)];
    };
    
    */
    import "C"
    
    // Machine characteristics; for internal use.
    
    const (
    	sizeofPtr      = C.sizeofPtr
    	sizeofShort    = C.sizeof_short
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/life.go

    	}
    }
    
    // Keep the channels visible from Go.
    var chans [4]chan bool
    
    // Double return value is just for testing.
    //
    //export GoStart
    func GoStart(i, xdim, ydim, xstart, xend, ystart, yend C.int, a *C.int, n *C.int) (int, int) {
    	c := make(chan bool, int(C.MYCONST))
    	go func() {
    		C.DoStep(xdim, ydim, xstart, xend, ystart, yend, a, n)
    		c <- true
    	}()
    	chans[i] = c
    	return int(i), int(i + 100)
    }
    
    //export GoWait
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 889 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/symtab.go

    			if t == sym.STLSBSS {
    				continue
    			}
    			if !shouldBeInSymbolTable(s) {
    				continue
    			}
    			char := DataSym
    			if t == sym.SBSS || t == sym.SNOPTRBSS {
    				char = BSSSym
    			}
    			putplan9sym(ctxt, ldr, s, char)
    		}
    	}
    }
    
    type byPkg []*sym.Library
    
    func (libs byPkg) Len() int {
    	return len(libs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. src/strings/search.go

    	// badCharSkip[b] is len(pattern).
    	//
    	// Whenever a mismatch is found with byte b in the text, we can safely
    	// shift the matching frame at least badCharSkip[b] until the next time
    	// the matching char could be in alignment.
    	badCharSkip [256]int
    
    	// goodSuffixSkip[i] defines how far we can shift the matching frame given
    	// that the suffix pattern[i+1:] matches, but the byte pattern[i] does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ifreq_linux.go

    	if len(name) >= IFNAMSIZ {
    		return nil, EINVAL
    	}
    
    	var ifr ifreq
    	copy(ifr.Ifrn[:], name)
    
    	return &Ifreq{raw: ifr}, nil
    }
    
    // TODO(mdlayher): get/set methods for hardware address sockaddr, char array, etc.
    
    // Name returns the interface name associated with the Ifreq.
    func (ifr *Ifreq) Name() string {
    	return ByteSliceToString(ifr.raw.Ifrn[:])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    	ErrorCount int // number of errors encountered
    }
    
    const (
    	bom = 0xFEFF // byte order mark, only permitted as very first character
    	eof = -1     // end of file
    )
    
    // Read the next Unicode char into s.ch.
    // s.ch < 0 means end-of-file.
    //
    // For optimization, there is some overlap between this method and
    // s.scanIdentifier.
    func (s *Scanner) next() {
    	if s.rdOffset < len(s.src) {
    		s.offset = s.rdOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. src/runtime/select.go

    			}
    			if c.qcount < c.dataqsiz {
    				goto bufsend
    			}
    		}
    	}
    
    	if !block {
    		selunlock(scases, lockorder)
    		casi = -1
    		goto retc
    	}
    
    	// pass 2 - enqueue on all chans
    	gp = getg()
    	if gp.waiting != nil {
    		throw("gp.waiting != nil")
    	}
    	nextp = &gp.waiting
    	for _, casei := range lockorder {
    		casi = int(casei)
    		cas = &scases[casi]
    		c = cas.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/reflect/type.go

    			i++
    		}
    		tag = tag[i:]
    		if tag == "" {
    			break
    		}
    
    		// Scan to colon. A space, a quote or a control character is a syntax error.
    		// Strictly speaking, control chars include the range [0x7f, 0x9f], not just
    		// [0x00, 0x1f], but in practice, we ignore the multi-byte control characters
    		// as it is simpler to inspect the tag's bytes than the tag's runes.
    		i = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/internal/fmtsort/sort_test.go

    	ct(reflect.TypeOf(&ints[0]), &ints[0], &ints[1], &ints[2]),
    	ct(reflect.TypeOf(unsafe.Pointer(&ints[0])), unsafe.Pointer(&ints[0]), unsafe.Pointer(&ints[1]), unsafe.Pointer(&ints[2])),
    	ct(reflect.TypeOf(chans[0]), chans[0], chans[1], chans[2]),
    	ct(reflect.TypeOf(toy{}), toy{0, 1}, toy{0, 2}, toy{1, -1}, toy{1, 1}),
    	ct(reflect.TypeOf([2]int{}), [2]int{1, 1}, [2]int{1, 2}, [2]int{2, 0}),
    	ct(reflect.TypeOf(any(0)), iFace, 1, 2, 3),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top