Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for xatexit (0.41 sec)

  1. src/encoding/gob/decode.go

    	// We know it's one of these.
    	switch ut.externalDec {
    	case xGob:
    		err = value.Interface().(GobDecoder).GobDecode(b)
    	case xBinary:
    		err = value.Interface().(encoding.BinaryUnmarshaler).UnmarshalBinary(b)
    	case xText:
    		err = value.Interface().(encoding.TextUnmarshaler).UnmarshalText(b)
    	}
    	if err != nil {
    		error_(err)
    	}
    }
    
    // ignoreGobDecoder discards the data for a GobDecoder value with no destination.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    	// We know it's one of these.
    	switch ut.externalEnc {
    	case xGob:
    		data, err = v.Interface().(GobEncoder).GobEncode()
    	case xBinary:
    		data, err = v.Interface().(encoding.BinaryMarshaler).MarshalBinary()
    	case xText:
    		data, err = v.Interface().(encoding.TextMarshaler).MarshalText()
    	}
    	if err != nil {
    		error_(err)
    	}
    	state := enc.newEncoderState(b)
    	state.fieldnum = -1
    	state.encodeUint(uint64(len(data)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    		{
    			`"Gø Pher" <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `Gø Pher`,
    					Address: "******@****.***",
    				},
    			},
    		},
    		// RFC 6532 3.2, atext /= UTF8-non-ascii
    		{
    			`µ <******@****.***>`,
    			[]*Address{
    				{
    					Name:    `µ`,
    					Address: "******@****.***",
    				},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/asm5.go

    	LFROM  = 1 << 0
    	LTO    = 1 << 1
    	LPOOL  = 1 << 2
    	LPCREL = 1 << 3
    )
    
    var optab = []Optab{
    	/* struct Optab:
    	OPCODE, from, prog->reg, to, type, size, param, flag, extra data size, optional suffix */
    	{obj.ATEXT, C_ADDR, C_NONE, C_TEXTSIZE, 0, 0, 0, 0, 0, 0},
    	{AADD, C_REG, C_REG, C_REG, 1, 4, 0, 0, 0, C_SBIT},
    	{AADD, C_REG, C_NONE, C_REG, 1, 4, 0, 0, 0, C_SBIT},
    	{AAND, C_REG, C_REG, C_REG, 1, 4, 0, 0, 0, C_SBIT},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/wasm/wasmobj.go

    			writeUleb128(w, v.index)
    			continue
    
    		case ANot:
    			writeOpcode(w, AI32Eqz)
    			continue
    
    		case obj.AUNDEF:
    			writeOpcode(w, AUnreachable)
    			continue
    
    		case obj.ANOP, obj.ATEXT, obj.AFUNCDATA, obj.APCDATA:
    			// ignore
    			continue
    		}
    
    		writeOpcode(w, p.As)
    
    		switch p.As {
    		case ABlock, ALoop, AIf:
    			if p.From.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    const (
    	AXXX As = iota
    	ACALL
    	ADUFFCOPY
    	ADUFFZERO
    	AEND
    	AFUNCDATA
    	AJMP
    	ANOP
    	APCALIGN
    	APCALIGNMAX // currently x86, amd64 and arm64
    	APCDATA
    	ARET
    	AGETCALLERPC
    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    
    // Each architecture is allotted a distinct subspace of opcode values
    // for declaring its arch-specific opcodes.
    // Within this subspace, the first arch-specific opcode should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/asm.go

    			return
    		}
    		argSize = p.positiveAtoi(op[1].String())
    	}
    	p.ctxt.InitTextSym(nameAddr.Sym, int(flag), p.pos())
    	prog := &obj.Prog{
    		Ctxt: p.ctxt,
    		As:   obj.ATEXT,
    		Pos:  p.pos(),
    		From: nameAddr,
    		To: obj.Addr{
    			Type:   obj.TYPE_TEXTSIZE,
    			Offset: frameSize,
    			// Argsize set below.
    		},
    	}
    	nameAddr.Sym.Func().Text = prog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    var optab []Optab
    
    var optabBase = []Optab{
    	{as: obj.ATEXT, a1: C_LOREG, a6: C_TEXTSIZE, type_: 0, size: 0},
    	{as: obj.ATEXT, a1: C_LOREG, a3: C_32CON, a6: C_TEXTSIZE, type_: 0, size: 0},
    	{as: obj.ATEXT, a1: C_ADDR, a6: C_TEXTSIZE, type_: 0, size: 0},
    	{as: obj.ATEXT, a1: C_ADDR, a3: C_32CON, a6: C_TEXTSIZE, type_: 0, size: 0},
    	/* move register */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    				// qtext
    				localPartBytes = append(localPartBytes, c)
    
    			default:
    				return mailbox, false
    			}
    		}
    	} else {
    		// Atom ("." Atom)*
    	NextChar:
    		for len(in) > 0 {
    			// atext from RFC 2822, Section 3.2.4
    			c := in[0]
    
    			switch {
    			case c == '\\':
    				// Examples given in RFC 3696 suggest that
    				// escaped characters can appear outside of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm.go

    	// branchLoopHead marks loop entry.
    	// Used to insert padding for under-aligned loops.
    	branchLoopHead
    )
    
    var optab = []Optab{
    	{obj.ATEXT, C_ADDR, C_NONE, C_NONE, C_TEXTSIZE, C_NONE, 0, 0, 0, 0},
    
    	{AMOVW, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 1, 4, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_NONE, C_REG, C_NONE, 1, 4, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
Back to top