Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Se (0.04 sec)

  1. src/internal/xcoff/file.go

    		case U802TOCMAGIC:
    			se := new(SymEnt32)
    			if err := binary.Read(sr, binary.BigEndian, se); err != nil {
    				return nil, err
    			}
    			numaux = int(se.Nnumaux)
    			sym.SectionNumber = int(se.Nscnum)
    			sym.StorageClass = int(se.Nsclass)
    			sym.Value = uint64(se.Nvalue)
    			needAuxFcn = se.Ntype&SYM_TYPE_FUNC != 0 && numaux > 1
    			zeroes := binary.BigEndian.Uint32(se.Nname[:4])
    			if zeroes != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    		}
    		blockMark[b.ID] = true
    		if b.Func != f {
    			f.Fatalf("%s.Func=%s, want %s", b, b.Func.Name, f.Name)
    		}
    
    		for i, e := range b.Preds {
    			if se := e.b.Succs[e.i]; se.b != b || se.i != i {
    				f.Fatalf("block pred/succ not crosslinked correctly %d:%s %d:%s", i, b, se.i, se.b)
    			}
    		}
    		for i, e := range b.Succs {
    			if pe := e.b.Preds[e.i]; pe.b != b || pe.i != i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    }
    
    type structFields struct {
    	list         []field
    	byExactName  map[string]*field
    	byFoldedName map[string]*field
    }
    
    func (se structEncoder) encode(e *encodeState, v reflect.Value, opts encOpts) {
    	next := byte('{')
    FieldLoop:
    	for i := range se.fields.list {
    		f := &se.fields.list[i]
    
    		// Find the nested struct field by following f.index.
    		fv := v
    		for _, i := range f.index {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/crypto/aes/aes_test.go

    // (Can adapt this code to generate them too.)
    func TestTd(t *testing.T) {
    	for i := 0; i < 256; i++ {
    		s := uint32(sbox1[i])
    		s9 := mul(s, 0x9)
    		sb := mul(s, 0xb)
    		sd := mul(s, 0xd)
    		se := mul(s, 0xe)
    		w := se<<24 | s9<<16 | sd<<8 | sb
    		td := [][256]uint32{td0, td1, td2, td3}
    		for j := 0; j < 4; j++ {
    			if x := td[j][i]; x != w {
    				t.Fatalf("td[%d][%d] = %#x, want %#x", j, i, x, w)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    	panic(scanError{errors.New(err)})
    }
    
    func (s *ss) Token(skipSpace bool, f func(rune) bool) (tok []byte, err error) {
    	defer func() {
    		if e := recover(); e != nil {
    			if se, ok := e.(scanError); ok {
    				err = se.err
    			} else {
    				panic(e)
    			}
    		}
    	}()
    	if f == nil {
    		f = notSpace
    	}
    	s.buf = s.buf[:0]
    	tok = s.token(skipSpace, f)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. src/time/zoneinfo_abbrs_windows.go

    	"Jordan Standard Time":            {"+03", "+03"},     // Asia/Amman
    	"Arabic Standard Time":            {"+03", "+03"},     // Asia/Baghdad
    	"Azerbaijan Standard Time":        {"+04", "+04"},     // Asia/Baku
    	"SE Asia Standard Time":           {"+07", "+07"},     // Asia/Bangkok
    	"Altai Standard Time":             {"+07", "+07"},     // Asia/Barnaul
    	"Middle East Standard Time":       {"EET", "EEST"},    // Asia/Beirut
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/os/pipe_test.go

    		_, err = w.Write([]byte("hi"))
    		if err == nil {
    			t.Fatal("unexpected success of Write to broken pipe")
    		}
    		if pe, ok := err.(*fs.PathError); ok {
    			err = pe.Err
    		}
    		if se, ok := err.(*os.SyscallError); ok {
    			err = se.Err
    		}
    		if err != expect {
    			t.Errorf("iteration %d: got %v, expected %v", i, err, expect)
    		}
    	}
    }
    
    func TestStdPipe(t *testing.T) {
    	switch runtime.GOOS {
    	case "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/crypto/x509/verify.go

    type SystemRootsError struct {
    	Err error
    }
    
    func (se SystemRootsError) Error() string {
    	msg := "x509: failed to load system roots and no roots provided"
    	if se.Err != nil {
    		return msg + "; " + se.Err.Error()
    	}
    	return msg
    }
    
    func (se SystemRootsError) Unwrap() error { return se.Err }
    
    // errNotParsed is returned when a certificate without ASN.1 contents is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/obj0.go

    	for p := p0; ; p = p.Link {
    		s[0].p = *p
    		c.markregused(&s[0])
    		if p == pe {
    			break
    		}
    		s = s[1:]
    	}
    	se := s
    
    	for i := cap(sch) - cap(se); i >= 0; i-- {
    		s = sch[i:]
    		if s[0].p.Mark&DELAY == 0 {
    			continue
    		}
    		if -cap(s) < -cap(se) {
    			if !conflict(&s[0], &s[1]) {
    				continue
    			}
    		}
    
    		var t []Sch
    		var j int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  10. src/image/jpeg/writer.go

    //   - the number of components "\x01",
    //   - component 1 uses DC table 0 and AC table 0 "\x01\x00",
    //   - the bytes "\x00\x3f\x00". Section B.2.3 of the spec says that for
    //     sequential DCTs, those bytes (8-bit Ss, 8-bit Se, 4-bit Ah, 4-bit Al)
    //     should be 0x00, 0x3f, 0x00<<4 | 0x00.
    var sosHeaderY = []byte{
    	0xff, 0xda, 0x00, 0x08, 0x01, 0x01, 0x00, 0x00, 0x3f, 0x00,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top