Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for blek (0.04 sec)

  1. src/archive/tar/writer.go

    			for _, s := range spd {
    				hdr.Size += s.Length
    			}
    			copy(blk.V7().Size(), zeroBlock[:]) // Reset field
    			f.formatNumeric(blk.V7().Size(), hdr.Size)
    			f.formatNumeric(blk.GNU().RealSize(), realSize)
    		}
    	*/
    	blk.setFormat(FormatGNU)
    	if err := tw.writeRawHeader(blk, hdr.Size, hdr.Typeflag); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	BEQZ	X5, 2(PC)				// 63840200
    	BGEZ	X5, 2(PC)				// 63d40200
    	BGT	X5, X6, 2(PC)				// 63445300
    	BGTU	X5, X6, 2(PC)				// 63645300
    	BGTZ	X5, 2(PC)				// 63445000
    	BLE	X5, X6, 2(PC)				// 63545300
    	BLEU	X5, X6, 2(PC)				// 63745300
    	BLEZ	X5, 2(PC)				// 63545000
    	BLTZ	X5, 2(PC)				// 63c40200
    	BNEZ	X5, 2(PC)				// 63940200
    
    	// Set pseudo-instructions
    	SEQZ	X15, X15				// 93b71700
    	SNEZ	X15, X15				// b337f000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/archive/tar/reader.go

    	if _, err := io.ReadFull(tr.r, tr.blk[:]); err != nil {
    		return nil, nil, err // EOF is okay here; exactly 0 bytes read
    	}
    	if bytes.Equal(tr.blk[:], zeroBlock[:]) {
    		if _, err := io.ReadFull(tr.r, tr.blk[:]); err != nil {
    			return nil, nil, err // EOF is okay here; exactly 1 block of zeros read
    		}
    		if bytes.Equal(tr.blk[:], zeroBlock[:]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/math/big/rat.go

    		Emin  = 1 - Ebias
    		Emax  = Ebias
    	)
    
    	// TODO(adonovan): specialize common degenerate cases: 1.0, integers.
    	alen := a.bitLen()
    	if alen == 0 {
    		return 0, true
    	}
    	blen := b.bitLen()
    	if blen == 0 {
    		panic("division by zero")
    	}
    
    	// 1. Left-shift A or B such that quotient A/B is in [1<<Msize1, 1<<(Msize2+1)
    	// (Msize2 bits if A < B when they are left-aligned, Msize2+1 bits if A >= B).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arch.go

    	return word[0] == 'J' || word == "CALL" || strings.HasPrefix(word, "LOOP") || word == "XBEGIN"
    }
    
    func jumpRISCV(word string) bool {
    	switch word {
    	case "BEQ", "BEQZ", "BGE", "BGEU", "BGEZ", "BGT", "BGTU", "BGTZ", "BLE", "BLEU", "BLEZ",
    		"BLT", "BLTU", "BLTZ", "BNE", "BNEZ", "CALL", "JAL", "JALR", "JMP":
    		return true
    	}
    	return false
    }
    
    func jumpWasm(word string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/parse.go

    		println("closeBlock", len(p.stack)-1)
    	}
    	blk := b.builder.build(p)
    	if list, ok := blk.(*List); ok {
    		p.corner = p.corner || listCorner(list)
    		if p.TaskListItems {
    			p.lists = append(p.lists, list)
    		}
    	}
    	p.stack = p.stack[:len(p.stack)-1]
    	if len(p.stack) > 0 {
    		b := &p.stack[len(p.stack)-1]
    		b.inner = append(b.inner, blk)
    		// _ = b
    	} else {
    		p.root = blk.(*Document)
    	}
    	return blk
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    		// Write the initial GNU header.
    		var blk block
    		gnu := blk.toGNU()
    		sparse := gnu.sparse()
    		copy(gnu.realSize(), size)
    		sps = populateSparseMap(sparse, sps)
    		if format != FormatUnknown {
    			blk.setFormat(format)
    		}
    		out = append(out, blk[:]...)
    
    		// Write extended sparse blocks.
    		for len(sps) > 0 {
    			var blk block
    			sps = populateSparseMap(blk.toSparse(), sps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  8. src/internal/bytealg/index_ppc64x.s

    	BLE        index2to16next_p10        // If at end, then not found
    	BR         notfound  // go to remainder loop
    #else
    	ADD     R3, R4, R9         // End of string
    	SUB     R7, R9, R9         // Number of bytes left
    	ANDCC   $15, R7, R10       // 16 byte offset
    	ADD     R10, R9, R11       // offset + len
    	CMP     R11, $16           // >= 16?
    	BLE     short              // Does not cross 16 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  9. src/math/pow_s390x.s

    	BR	L1
    L34:
    	FMOVD	8(R9), F4
    L19:
    	LTDBR	F6, F6
    	BLEU	L47
    L18:
    	WFMDB	V4, V5, V1
    	BR	L1
    L5:
    	RISBGZ	$33, $50, $63, R3, R3
    	WORD	$0xC23B4000	//alfi	%r3,1073741824
    	BYTE	$0x00
    	BYTE	$0x00
    	RLL	$24, R3, R3
    	ORW	$0x45000000, R3
    	BR	L2
    L45:
    	WFCEDBS	V0, V0, V4
    	BVS	L35
    	LTDBR	F0, F0
    	BLEU	L48
    	FMOVD	8(R9), F4
    L12:
    	MOVW	R2, R6
    	CMPBLT	R6, $0, L19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/s390x.s

    	BNE	0(PC)                  // a7740000
    	BEQ	0(PC)                  // a7840000
    	BLT	0(PC)                  // a7440000
    	BLE	0(PC)                  // a7c40000
    	BGT	0(PC)                  // a7240000
    	BGE	0(PC)                  // a7a40000
    	BLTU	0(PC)                  // a7540000
    	BLEU	0(PC)                  // a7d40000
    
    	BRCT	R1, 0(PC)              // a7160000
    	BRCTG	R2, 0(PC)              // a7270000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top