Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for qword (0.24 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/doc.go

    // to convert integers to pointers. A conversion from uintptr to
    // unsafe.Pointer is invalid if it implies that there is a uintptr-typed
    // word in memory that holds a pointer value, because that word will be
    // invisible to stack copying and to the garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 738 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20/chacha_arm64.s

    	// load contants
    	// VLD4R (R10), [V0.S4, V1.S4, V2.S4, V3.S4]
    	WORD	$0x4D60E940
    
    	// load keys
    	// VLD4R 16(R4), [V4.S4, V5.S4, V6.S4, V7.S4]
    	WORD	$0x4DFFE884
    	// VLD4R 16(R4), [V8.S4, V9.S4, V10.S4, V11.S4]
    	WORD	$0x4DFFE888
    	SUB	$32, R4
    
    	// load counter + nonce
    	// VLD1R (R7), [V12.S4]
    	WORD	$0x4D40C8EC
    
    	// VLD3R (R6), [V13.S4, V14.S4, V15.S4]
    	WORD	$0x4D40E8CD
    
    	// update counter
    	VADD	V30.S4, V12.S4, V12.S4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

        margin: 0;
        background-color: #f7f7f7;
        border: solid 1px #d0d0d0;
        min-width: 700px;
        width: auto !important;
        width: 700px;
    }
    
    span.wrapped pre {
        word-wrap: break-word;
        white-space: pre-wrap;
        word-break: break-all;
    }
    
    label.hidden {
        display: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. src/math/exp_s390x.s

    	WFMADB	V2, V1, V3, V1
    	RISBGZ	$57, $60, $3, R1, R3
    	WFMADB	V0, V4, V1, V0
    	MOVD	$·exptexp<>+0(SB), R2
    	WORD	$0x68432000	//ld	%f4,0(%r3,%r2)
    	FMADD	F4, F2, F2
    	SLD	$48, R1, R2
    	WFMADB	V2, V0, V4, V2
    	LDGR	R2, F0
    	FMADD	F0, F2, F0
    	FMOVD	F0, ret+8(FP)
    	RET
    L16:
    	WFCEDBS	V2, V2, V4
    	BVS	LEXITTAGexp
    	WORD	$0xED205000	//cdb	%f2,.L33-.L22(%r5)
    	BYTE	$0x00
    	BYTE	$0x19
    	BLT	L6
    	WFCEDBS	V2, V0, V0
    	BVS	L13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  5. build/pause/Makefile

    all-container-registry: $(addprefix sub-container-registry-,$(ALL_OS_ARCH))
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    sub-container-%:
    	$(MAKE) OUTPUT_TYPE=$(call word-hyphen,$*,1) OS=$(call word-hyphen,$*,2) ARCH=$(call word-hyphen,$*,3) OSVERSION=$(call word-hyphen,$*,4) container
    
    build: $(foreach binary, ${BIN}, bin/${binary}-${OS}-${ARCH})
    
    bin/${BIN.linux}-$(OS)-$(ARCH): $(SRCS)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/math/big/decimal.go

    func (d *decimal) at(i int) byte {
    	if 0 <= i && i < len(d.mant) {
    		return d.mant[i]
    	}
    	return '0'
    }
    
    // Maximum shift amount that can be done in one pass without overflow.
    // A Word has _W bits and (1<<maxShift - 1)*10 + 9 must fit into Word.
    const maxShift = _W - 4
    
    // TODO(gri) Since we know the desired decimal precision when converting
    // a floating-point number, we may be able to limit the number of decimal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
  7. test-site/app/controllers/Suggest.java

                    .startObject("response")
                    .startArray("result")
                    .startObject()
                    .startArray("result");
    
                for(String word: response.getWords()) {
                    builder.value(word);
                }
    
                String json = builder.endArray()
                    .endObject()
                    .endArray()
                    .endObject()
                    .endObject().string();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/s390x.go

    // s390x instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj/s390x"
    )
    
    func jumpS390x(word string) bool {
    	switch word {
    	case "BRC",
    		"BC",
    		"BCL",
    		"BEQ",
    		"BGE",
    		"BGT",
    		"BL",
    		"BLE",
    		"BLEU",
    		"BLT",
    		"BLTU",
    		"BNE",
    		"BR",
    		"BVC",
    		"BVS",
    		"BRCT",
    		"BRCTG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 17 14:55:25 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.s

    // func kimd(function code, chain *[200]byte, src []byte)
    TEXT ·kimd(SB), NOFRAME|NOSPLIT, $0-40
    	MOVD function+0(FP), R0
    	MOVD chain+8(FP), R1
    	LMG  src+16(FP), R2, R3 // R2=base, R3=len
    
    continue:
    	WORD $0xB93E0002 // KIMD --, R2
    	BVS  continue    // continue if interrupted
    	MOVD $0, R0      // reset R0 for pre-go1.8 compilers
    	RET
    
    // func klmd(function code, chain *[200]byte, dst, src []byte)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 957 bytes
    - Viewed (0)
  10. src/math/atan2_s390x.s

    Normal:
    	FMOVD	x+0(FP), F0
    	FMOVD	y+8(FP), F2
    	MOVD	$·atan2rodataL25<>+0(SB), R9
    	LGDR	F0, R2
    	LGDR	F2, R1
    	RISBGNZ	$32, $63, $32, R2, R2
    	RISBGNZ	$32, $63, $32, R1, R1
    	WORD	$0xB9170032	//llgtr	%r3,%r2
    	RISBGZ	$63, $63, $33, R2, R5
    	WORD	$0xB9170041	//llgtr	%r4,%r1
    	WFLCDB	V0, V20
    	MOVW	R4, R6
    	MOVW	R3, R7
    	CMPUBLT	R6, R7, L17
    	WFDDB	V2, V0, V3
    	ADDW	$2, R5, R2
    	MOVW	R4, R6
    	MOVW	R3, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 04:06:34 UTC 2020
    - 6.9K bytes
    - Viewed (0)
Back to top