Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for blek (0.05 sec)

  1. src/math/big/arith_s390x.s

    	MOVD R6, 8(R2)(R10*1)
    	MOVD R7, 16(R2)(R10*1)
    	MOVD R1, 24(R2)(R10*1)
    
    	ADD $32, R10 // i += 4
    	SUB $4, R3   // n -= 4
    	BGE U1       // if n >= 0 goto U1
    
    v1:
    	ADD $4, R3 // n += 4
    	BLE E1     // if n <= 0 goto E1
    
    L1:  // n > 0
    	ADDC R4, R4            // restore CF
    	MOVD 0(R8)(R10*1), R5
    	MOVD 0(R9)(R10*1), R11
    	ADDE R11, R5
    	MOVD R5, 0(R2)(R10*1)
    	MOVD R0, R4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    	ADD $-16, R5
    	CMP R5, $16
    	BGE loop
    
    bytes_between_0_and_15:
    	CMP  R5, $0
    	BEQ  done
    	MOVD $0, R16 // h0
    	MOVD $0, R17 // h1
    
    flush_buffer:
    	CMP R5, $8
    	BLE just1
    
    	MOVD $8, R21
    	SUB  R21, R5, R21
    
    	// Greater than 8 -- load the rightmost remaining bytes in msg
    	// and put into R17 (h1)
    	MOVD (R4)(R21), R17
    	MOVD $16, R22
    
    	// Find the offset to those bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/memclr_ppc64x.s

    	STXVL   V0, R3, R7
    	RET
    #else
    	CMP	R4, $8
    	BLT	nozerolarge
    	MOVD	R0, 0(R3)
    	ADD	$8, R3
    	ADD	$-8, R4
    #endif
    nozerolarge:
    	ANDCC $7, R4, R5 // any remaining bytes
    	BC    4, 1, LR   // ble lr
    #ifdef GOPPC64_power10
    	XXLXOR  VS32, VS32, VS32 // clear VS32 (V0)
    	SLD	$56, R5, R7
    	STXVL   V0, R3, R7
    	RET
    #else
    	CMP   R5, $4
    	BLT   next2
    	MOVW  R0, 0(R3)
    	ADD   $4, R3
    	ADD   $-4, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/go/doc/comment/text.go

    				out.WriteString(" - ")
    			} else {
    				out.WriteString(item.Number)
    				out.WriteString(". ")
    			}
    			for i, blk := range item.Content {
    				const fourSpace = "    "
    				if i > 0 {
    					writeNL(out)
    					out.WriteString(p.prefix)
    					out.WriteString(fourSpace)
    				}
    				p.text(out, fourSpace, blk.(*Paragraph).Text)
    			}
    		}
    	}
    }
    
    // text prints the text sequence x to out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. src/archive/tar/common.go

    			}
    		}
    		if v, ok := h.PAXRecords[paxKey]; ok && v == formatPAXTime(ts) {
    			paxHdrs[paxKey] = v
    		}
    	}
    
    	// Check basic fields.
    	var blk block
    	v7 := blk.toV7()
    	ustar := blk.toUSTAR()
    	gnu := blk.toGNU()
    	verifyString(h.Name, len(v7.name()), "Name", paxPath)
    	verifyString(h.Linkname, len(v7.linkName()), "Linkname", paxLinkpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/runtime/runtime-gdb.py

    				continue
    			s = ' '
    			if ptr['m']:
    				s = '*'
    			pc = ptr['sched']['pc'].cast(vp)
    			pc = pc_to_int(pc)
    			blk = gdb.block_for_pc(pc)
    			status = int(ptr['atomicstatus']['value'])
    			st = sts.get(status, "unknown(%d)" % status)
    			print(s, ptr['goid'], "{0:8s}".format(st), blk.function)
    
    
    def find_goroutine(goid):
    	"""
    	find_goroutine attempts to find the goroutine identified by goid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    			t.Errorf("test %d, unexpected Close error: %v", i, err)
    		}
    
    		// The prefix field should never appear in the GNU format.
    		var blk block
    		copy(blk[:], b.Bytes())
    		prefix := string(blk.toUSTAR().prefix())
    		prefix, _, _ = strings.Cut(prefix, "\x00") // Truncate at the NUL terminator
    		if blk.getFormat() == FormatGNU && len(prefix) > 0 && strings.HasPrefix(name, prefix) {
    			t.Errorf("test %d, found prefix in GNU format: %s", i, prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/math/sinh_s390x.s

    	//special case Sinh(±0) = ±0
    	FMOVD   $(0.0), F1
    	FCMPU   F0, F1
    	BEQ     sinhIsZero
    	//special case Sinh(±Inf) = ±Inf
    	FMOVD   $1.797693134862315708145274237317043567981e+308, F1
    	FCMPU   F1, F0
    	BLEU    sinhIsInf
    	FMOVD   $-1.797693134862315708145274237317043567981e+308, F1
    	FCMPU   F1, F0
    	BGT             sinhIsInf
    
    	MOVD    $sinhrodataL21<>+0(SB), R5
    	LTDBR	F0, F0
    	MOVD    sinhxinit<>+0(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. src/runtime/memmove_ppc64x.s

    lt4:	// Move halfword if possible
    	CMP BYTES, $2
    	BLT lt2
    	MOVHZ 0(SRC), TMP
    	ADD $-2, BYTES
    	MOVH TMP, 0(TGT)
    	ADD $2, SRC
    	ADD $2, TGT
    lt2:	// Move last byte if 1 left
    	CMP BYTES, $1
    	BC 12, 0, LR	// ble lr
    	MOVBZ 0(SRC), TMP
    	MOVBZ TMP, 0(TGT)
    	RET
    
    backward:
    	// Copying backwards proceeds by copying R7 bytes then copying R6 double words.
    	// R3 and R4 are advanced to the end of the destination/source buffers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm.go

    	"BHS":  true,
    	"BCC":  true,
    	"BLO":  true,
    	"BMI":  true,
    	"BPL":  true,
    	"BVS":  true,
    	"BVC":  true,
    	"BHI":  true,
    	"BLS":  true,
    	"BGE":  true,
    	"BLT":  true,
    	"BGT":  true,
    	"BLE":  true,
    	"CALL": true,
    	"JMP":  true,
    }
    
    func jumpArm(word string) bool {
    	return armJump[word]
    }
    
    // IsARMCMP reports whether the op (as defined by an arm.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top