Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for indexbodyp9 (0.1 sec)

  1. src/internal/bytealg/index_ppc64x.s

    	CMP   R7, $1
    	BNE   power8
    	BR    indexbodyp9<>(SB)
    #endif
    power8:
    	BR indexbody<>(SB)
    
    TEXT ·IndexString<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// R3 = string
    	// R4 = length
    	// R5 = separator pointer
    	// R6 = separator length
    
    #ifdef GOARCH_ppc64le
    	MOVBZ internal∕cpu·PPC64+const_offsetPPC64HasPOWER9(SB), R7
    	CMP   R7, $1
    	BNE   power8
    	BR    indexbodyp9<>(SB)
    
    #endif
    power8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 31.6K bytes
    - Viewed (0)
  2. src/internal/bytealg/index_amd64.s

    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+24(FP), R8
    	MOVQ b_len+32(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+48(FP), R11
    	JMP  indexbody<>(SB)
    
    TEXT ·IndexString(SB),NOSPLIT,$0-40
    	MOVQ a_base+0(FP), DI
    	MOVQ a_len+8(FP), DX
    	MOVQ b_base+16(FP), R8
    	MOVQ b_len+24(FP), AX
    	MOVQ DI, R10
    	LEAQ ret+32(FP), R11
    	JMP  indexbody<>(SB)
    
    // AX: length of string, that we are searching for
    // DX: length of string, in which we are searching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:20:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top