Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for jz (0.03 sec)

  1. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

     
         /* compute q[0],q[1],...q[jk] */
     	for (i=0;i<=jk;i++) {
    -	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j]; q[i] = fw;
    +	    for(j=0,fw=0.0;j<=jx;j++) fw += x[j]*f[jx+i-j];
    +	    q[i] = fw;
     	}
     
     	jz = jk;
    diff --git a/sysdeps/ieee754/flt-32/k_rem_pio2f.c b/sysdeps/ieee754/flt-32/k_rem_pio2f.c
    index e54a067..215b0e0 100644
    --- a/sysdeps/ieee754/flt-32/k_rem_pio2f.c
    +++ b/sysdeps/ieee754/flt-32/k_rem_pio2f.c
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/internal/bytealg/count_amd64.s

    	// Accumulate into R12
    	ADDQ DX, R12
    	// Advance to next block.
    	ADDQ	$16, DI
    sseloopentry:
    	CMPQ	DI, AX
    	JBE	sseloop
    
    	// Get the number of bytes to consider in the last 16 bytes
    	ANDQ $15, BX
    	JZ end
    
    	// Create mask to ignore overlap between previous 16 byte block
    	// and the next.
    	MOVQ $16,CX
    	SUBQ BX, CX
    	MOVQ $0xFFFF, R10
    	SARQ CL, R10
    	SALQ CL, R10
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:54:43 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv13-P256-ECDHE

    00000020  28 5c de 4f 67 cf a5 24  e4 d3 c5 e1 38 fa 7e e8  |(\.Og..$....8.~.|
    00000030  97 03 7e 66 3b d0 6b e7  f8 7e 97 e0 db 6a da 79  |..~f;.k..~...j.y|
    00000040  17 03 03 00 17 30 1a e2  fe 4a 7a 03 03 82 f6 05  |.....0...Jz.....|
    00000050  e8 18 67 1d 14 ab 4f 3c  22 c6 45 f5 17 03 03 00  |..g...O<".E.....|
    00000060  13 f8 8f 43 e7 74 3c a0  28 b2 71 5a 85 69 e5 86  |...C.t<.(.qZ.i..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv12-ClientCert-Ed25519

    00000150  cd 62 43 15 28 da ac 5f  bb 29 07 30 ff f6 84 af  |.bC.(.._.).0....|
    00000160  c4 cf c2 ed 90 99 5f 58  cb 3b 74 16 03 03 00 48  |......_X.;t....H|
    00000170  0f 00 00 44 08 07 00 40  70 0a 4f 7d dc c7 4a 7a  |...D...@p.O}..Jz|
    00000180  aa 47 45 8e be a6 df 02  14 c0 a0 f9 b9 a5 47 eb  |.GE...........G.|
    00000190  3b d3 6f 38 17 aa 5c 48  d5 33 10 41 af 08 2c 2c  |;.o8..\H.3.A..,,|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/runtime/asm_386.s

    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    	// Check for MMX support
    	TESTL	$(1<<23), DX // MMX
    	JZ	bad_proc
    
    nocpuinfo:
    	// if there is an _cgo_init, call it to let it
    	// initialize and to set up GS.  if not,
    	// we set up GS ourselves.
    	MOVL	_cgo_init(SB), AX
    	TESTL	AX, AX
    	JZ	needtls
    #ifdef GOOS_android
    	// arg 4: TLS base, stored in slot 0 (Android's TLS_SLOT_SELF).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	MOVQ	SI, _rt0_amd64_lib_argv<>(SB)
    
    	// Synchronous initialization.
    	CALL	runtime·libpreinit(SB)
    
    	// Create a new thread to finish Go runtime initialization.
    	MOVQ	_cgo_sys_thread_create(SB), AX
    	TESTQ	AX, AX
    	JZ	nocgo
    
    	// We're calling back to C.
    	// Align stack per ELF ABI requirements.
    	MOVQ	SP, BX  // Callee-save in C ABI
    	ANDQ	$~15, SP
    	MOVQ	$_rt0_amd64_lib_go(SB), DI
    	MOVQ	$0, SI
    	CALL	AX
    	MOVQ	BX, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/arch.go

    	instructions["JPO"] = x86.AJPC  /* alternate */
    	instructions["JPS"] = x86.AJPS  /* parity set (PF = 1) */
    	instructions["JS"] = x86.AJMI   /* alternate */
    	instructions["JZ"] = x86.AJEQ   /* alternate */
    	instructions["MASKMOVDQU"] = x86.AMASKMOVOU
    	instructions["MOVD"] = x86.AMOVQ
    	instructions["MOVDQ2Q"] = x86.AMOVQ
    	instructions["MOVNTDQ"] = x86.AMOVNTO
    	instructions["MOVOA"] = x86.AMOVO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_amd64.s

    GLOBL MASK_YMM_LO<>(SB), (NOPTR+RODATA), $32
    
    TEXT ·blockAVX2(SB), NOSPLIT, $56-32
    	MOVQ dig+0(FP), SI
    	MOVQ p_base+8(FP), DI
    	MOVQ p_len+16(FP), DX
    
    	SHRQ $7, DX
    	SHLQ $7, DX
    
    	JZ   done_hash
    	ADDQ DI, DX
    	MOVQ DX, frame_INPEND(SP)
    
    	MOVQ (0*8)(SI), AX
    	MOVQ (1*8)(SI), BX
    	MOVQ (2*8)(SI), CX
    	MOVQ (3*8)(SI), R8
    	MOVQ (4*8)(SI), DX
    	MOVQ (5*8)(SI), R9
    	MOVQ (6*8)(SI), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. doc/asm.html

    <pre>
    // uint64 atomicload64(uint64 volatile* addr);
    // so actually
    // void atomicload64(uint64 *res, uint64 volatile *addr);
    TEXT runtime·atomicload64(SB), NOSPLIT, $0-12
    	MOVL	ptr+0(FP), AX
    	TESTL	$7, AX
    	JZ	2(PC)
    	MOVL	0, AX // crash with nil ptr deref
    	LEAL	ret_lo+4(FP), BX
    	// MOVQ (%EAX), %MM0
    	BYTE $0x0f; BYTE $0x6f; BYTE $0x00
    	// MOVQ %MM0, 0(%EBX)
    	BYTE $0x0f; BYTE $0x7f; BYTE $0x03
    	// EMMS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  10. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/concurrent/TaskQueue;->schedule(Lokhttp3/internal/concurrent/Task;J)V
    HSPLokhttp3/internal/concurrent/TaskQueue;->scheduleAndDecide$okhttp(Lokhttp3/internal/concurrent/Task;JZ)Z
    HSPLokhttp3/internal/concurrent/TaskQueue;->shutdown()V
    HSPLokhttp3/internal/concurrent/TaskRunner$RealBackend;-><init>(Ljava/util/concurrent/ThreadFactory;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
Back to top