Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Deiros (0.26 sec)

  1. src/compress/bzip2/move_to_front.go

    // by starting with an initial list of symbols and references symbols by their
    // index into that list. When a symbol is referenced, it's moved to the front
    // of the list. Thus, a repeated symbol ends up being encoded with many zeros,
    // as the symbol will be at the front of the list after the first access.
    type moveToFrontDecoder []byte
    
    // newMTFDecoder creates a move-to-front decoder with an explicit initial list
    // of symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/trace/tasks.go

    	}
    	return st.Resource.Goroutine()
    }
    
    func elapsed(d time.Duration) string {
    	b := fmt.Appendf(nil, "%.9f", d.Seconds())
    
    	// For subsecond durations, blank all zeros before decimal point,
    	// and all zeros between the decimal point and the first non-zero digit.
    	if d < time.Second {
    		dot := bytes.IndexByte(b, '.')
    		for i := 0; i < dot; i++ {
    			b[i] = ' '
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/outbuf.go

    	out.off += int64(n)
    }
    
    // WriteStringN writes the first n bytes of s.
    // If n is larger than len(s) then it is padded with zero bytes.
    func (out *OutBuf) WriteStringN(s string, n int) {
    	out.WriteStringPad(s, n, zeros[:])
    }
    
    // WriteStringPad writes the first n bytes of s.
    // If n is larger than len(s) then it is padded with the bytes in pad (repeated as needed).
    func (out *OutBuf) WriteStringPad(s string, n int, pad []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  4. src/archive/tar/format.go

    			c = ' ' // Treat the checksum field itself as all spaces.
    		}
    		unsigned += int64(c)
    		signed += int64(int8(c))
    	}
    	return unsigned, signed
    }
    
    // reset clears the block with all zeros.
    func (b *block) reset() {
    	*b = block{}
    }
    
    type headerV7 [blockSize]byte
    
    func (h *headerV7) name() []byte     { return h[000:][:100] }
    func (h *headerV7) mode() []byte     { return h[100:][:8] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 18:36:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm.go

    		subtle.XORBytes(out, in, mask[:])
    	}
    }
    
    // deriveCounter computes the initial GCM counter state from the given nonce.
    // See NIST SP 800-38D, section 7.1. This assumes that counter is filled with
    // zeros on entry.
    func (g *gcm) deriveCounter(counter *[gcmBlockSize]byte, nonce []byte) {
    	// GCM has two modes of operation with respect to the initial counter
    	// state: a "fast path" for 96-bit (12-byte) nonces, and a "slow path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat.go

    	// The underlying natural number for this modulus.
    	//
    	// This will be stored without any padding, and shouldn't alias with any
    	// other natural number being used.
    	nat     *Nat
    	leading int  // number of leading zeros in the modulus
    	m0inv   uint // -nat.limbs[0]⁻¹ mod _W
    	rr      *Nat // R*R for montgomeryRepresentation
    }
    
    // rr returns R*R with R = 2^(_W * n) and n = len(m.nat.limbs).
    func rr(m *Modulus) *Nat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    					t.Errorf("Equal(%d, %d, %d) = false", len, x, y)
    				}
    			}
    		}
    	}
    }
    
    // make sure Equal returns false for minimally different strings. The data
    // is all zeros except for a single one in one location.
    func TestNotEqual(t *testing.T) {
    	var size = 128
    	if testing.Short() {
    		size = 32
    	}
    	a := make([]byte, size)
    	b := make([]byte, size)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "CMOVWGEF", argLength: 3, reg: gp21, asm: "CMOVWCC", resultInArg0: true},
    
    		// BSWAPx swaps the low-order (L=4,Q=8) bytes of arg0.
    		// Q: abcdefgh -> hgfedcba
    		// L: abcdefgh -> 0000hgfe (L zeros the upper 4 bytes)
    		{name: "BSWAPQ", argLength: 1, reg: gp11, asm: "BSWAPQ", resultInArg0: true},
    		{name: "BSWAPL", argLength: 1, reg: gp11, asm: "BSWAPL", resultInArg0: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/asmb.go

    		return
    	}
    
    	if ctxt.IsELF {
    		Asmbelfsetup()
    	}
    
    	var wg sync.WaitGroup
    	f := func(ctxt *Link, out *OutBuf, start, length int64) {
    		pad := thearch.CodePad
    		if pad == nil {
    			pad = zeros[:]
    		}
    		CodeblkPad(ctxt, out, start, length, pad)
    	}
    
    	for _, sect := range Segtext.Sections {
    		offset := sect.Vaddr - Segtext.Vaddr + Segtext.Fileoff
    		// Handle text sections with Codeblk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/rewrite.go

    		cstart := r.start - r.off
    		if cstart < 0 {
    			cstart = 0
    		}
    		cend := r.end - r.off
    		if cend > int64(n) {
    			cend = int64(n)
    		}
    		zeros := make([]byte, cend-cstart)
    		copy(p[cstart:cend], zeros)
    	}
    	r.off += int64(n)
    	return n, err
    }
    
    func findMachoCodeSignature(r any) (*macho.File, codesign.CodeSigCmd, bool) {
    	ra, ok := r.(io.ReaderAt)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top