Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 523 for Qword6 (0.14 sec)

  1. src/math/asinh_s390x.s

    	FMOVD	x+0(FP), F0
    	MOVD	$·asinhrodataL18<>+0(SB), R9
    	LGDR	F0, R12
    	WORD	$0xC0293FDF	//iilf	%r2,1071644671
    	BYTE	$0xFF
    	BYTE	$0xFF
    	SRAD	$32, R12
    	WORD	$0xB917001C	//llgtr	%r1,%r12
    	MOVW	R1, R6
    	MOVW	R2, R7
    	CMPBLE	R6, R7, L2
    	WORD	$0xC0295FEF	//iilf	%r2,1609564159
    	BYTE	$0xFF
    	BYTE	$0xFF
    	MOVW	R2, R7
    	CMPBLE	R6, R7, L14
    L3:
    	WORD	$0xC0297FEF	//iilf	%r2,2146435071
    	BYTE	$0xFF
    	BYTE	$0xFF
    	CMPW	R1, R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  2. src/crypto/internal/bigmod/nat_arm64.s

    	MOVD	z+0(FP), R1
    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    // 4 words of x, R3 is y and R12:R11:R10:R9 are part of the result z.
    loop:
    	CBZ	R0, done
    
    	LDP.P	16(R2), (R5, R6)
    	LDP.P	16(R2), (R7, R8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/conditionCheck.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = words.check { it.length == 5 }
        type = kotlin.Boolean
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 369 bytes
    - Viewed (0)
  4. src/math/asin_s390x.s

    	FMOVD	F0, F8
    	SRAD	$32, R7
    	WORD	$0xC0193FE6 //iilf  %r1,1072079005
    	BYTE	$0xA0
    	BYTE	$0x9D
    	WORD	$0xB91700C7 //llgtr %r12,%r7
    	MOVW	R12, R8
    	MOVW	R1, R6
    	CMPBGT	R8, R6, L2
    	WORD	$0xC0193BFF //iilf  %r1,1006632959
    	BYTE	$0xFF
    	BYTE	$0xFF
    	MOVW	R1, R6
    	CMPBGT	R8, R6, L13
    L3:
    	FMOVD	216(R9), F0
    	FMADD	F0, F8, F8
    L1:
    	FMOVD	F8, ret+8(FP)
    	RET
    L2:
    	WORD	$0xC0193FEF	//iilf	%r1,1072693247
    	BYTE	$0xFF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 20 17:42:08 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/unicode/utf16/44940.md

    The [RuneLen] function returns the number of 16-bit words in
    the UTF-16 encoding of the rune. It returns -1 if the rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 162 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            logger.info("Creating new suggest index.");
            suggestHelper.suggester().createNextIndex();
    
            logger.info("Storing all bad words.");
            suggestHelper.storeAllBadWords(true);
    
            logger.info("Storing all elevate words.");
            suggestHelper.storeAllElevateWords(true);
    
            final AtomicInteger exitCode = new AtomicInteger(0);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/runtime/memmove_loong64.s

    	BNE	R7, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R4, R8
    	BEQ	R8, words
    	MOVB	(R5), R7
    	ADDV	$1, R5
    	MOVB	R7, (R4)
    	ADDV	$1, R4
    	JMP	-6(PC)
    
    words:
    	// do 8 bytes at a time if there is room
    	ADDV	$-7, R9, R6 // R6 is end pointer-7
    
    	PCALIGN	$16
    	SGTU	R6, R4, R8
    	BEQ	R8, out
    	MOVV	(R5), R7
    	ADDV	$8, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/memmove_mips64x.s

    	BNE	R4, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R3, R4
    	BNE	R4, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R1, R5
    	BEQ	R5, words
    	MOVB	(R2), R4
    	ADDV	$1, R2
    	MOVB	R4, (R1)
    	ADDV	$1, R1
    	JMP	-6(PC)
    
    words:
    	// do 8 bytes at a time if there is room
    	ADDV	$-7, R6, R3 // R3 is end pointer-7
    
    	SGTU	R3, R1, R5
    	BEQ	R5, out
    	MOVV	(R2), R4
    	ADDV	$8, R2
    	MOVV	R4, (R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. src/math/big/arith_amd64.s

    	SBBQ CX, CX		// save CF
    
    	ADDQ $1, SI		// i++
    	SUBQ $1, DI		// n--
    	JG L2			// if n > 0 goto L2
    
    E2:	NEGQ CX
    	MOVQ CX, c+72(FP)	// return c
    	RET
    
    
    // func addVW(z, x []Word, y Word) (c Word)
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVQ z_len+8(FP), DI
    	CMPQ DI, $32
    	JG large
    	MOVQ x+24(FP), R8
    	MOVQ y+48(FP), CX	// c = y
    	MOVQ z+0(FP), R10
    
    	MOVQ $0, SI		// i = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/math/tanh_s390x.s

    	FMOVD   tanhrodataL18<>+32(SB), F4
    	WORD    $0xB9270022     //lhr %r2,%r2
    	WFMADB  V3, V1, V4, V1
    	FMOVD   tanhrodataL18<>+24(SB), F4
    	WFMADB  V3, V2, V4, V3
    	WFMADB  V0, V5, V0, V2
    	WFMADB  V0, V1, V3, V0
    	WORD    $0xA7183ECF     //lhi %r1,16079
    	WFMADB  V0, V2, V5, V2
    	FMUL    F6, F2
    	MOVW    R2, R10
    	MOVW    R1, R11
    	CMPBLE  R10, R11, L16
    	FMOVD   F6, F0
    	WORD    $0xED005010     //adb %f0,.L28-.L18(%r5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
Back to top