Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 349 for ctr2 (0.46 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassAndFunctionContextReceivers.kt

    // LANGUAGE: +ContextReceivers
    
    // MODULE: context
    
    // FILE: context.kt
    class Ctx1
    class Ctx2
    class Ctx3
    class Ctx4
    
    context(Ctx1, Ctx2, Ctx3, Ctx4)
    fun useWithCtx1Ctx2Ctx3Ctx4() = 3
    
    context(Ctx1, Ctx2)
    class Test {
        context(Ctx3, Ctx4)
        fun foo() {
            <caret_context>val x = 1
        }
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 453 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	MOVQ    inl, itr1
    	MOVQ    $160, itr2
    	CMPQ    itr1, $160
    	CMOVQGT itr2, itr1
    	ANDQ    $-16, itr1
    	XORQ    itr2, itr2
    
    openSSLTail192LoopA:
    	// Perform ChaCha rounds, while hashing the remaining input
    	polyAdd(0(inp)(itr2*1))
    	polyMul
    
    openSSLTail192LoopB:
    	ADDQ         $16, itr2
    	chachaQR(A0, B0, C0, D0, T0); chachaQR(A1, B1, C1, D1, T0); chachaQR(A2, B2, C2, D2, T0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/secondClassContextReceiver.ir.txt

                CALL 'public final fun useWithCtx2 ($context_receiver_0: <root>.Ctx2): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
                  $context_receiver_0: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField1 type:<root>.Ctx2 visibility:private [final] declared in <root>.Test' type=<root>.Ctx2 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleFunctionContextReceivers.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Ctx1
            VALUE_PARAMETER name:p1 index:1 type:<root>.Ctx2
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'public final fun useWithCtx1Ctx2 ($context_receiver_0: <root>.Ctx1, $context_receiver_1: <root>.Ctx2): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassContextReceivers.capturing.txt

    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
        R|Test|
    ContainingClass[name: <this>; isMutated: false; displayText: this@Test]
        context(R|Ctx1|, R|Ctx2|)
        class Test : R|kotlin/Any|
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 14 15:22:43 UTC 2023
    - 290 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/multipleClassContextReceivers.ir.txt

                  $context_receiver_1: GET_FIELD 'FIELD FIELD_FOR_CLASS_CONTEXT_RECEIVER name:contextReceiverField1 type:<root>.Ctx2 visibility:private [final] declared in <root>.Test' type=<root>.Ctx2 origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Apr 26 06:04:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/debug/pe/testdata/llvm-mingw-20211002-msvcrt-x86_64-crt2

    Than McIntosh <******@****.***> 1647953392 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 14:57:35 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  8. src/math/big/arith_ppc64x.s

    	BEQ     done
    	CMP     R7, R4
    	ISEL    $0, R7, R4, R7  // Take the lower bound of lengths of x,z
    	SLD     $3, R7, R7
    	SUB     R6, R3, R11     // dest - src
    	CMPU    R11, R7, CR2    // < len?
    	BLT     CR2, backward   // there is overlap, copy backwards
    	MOVD    $0, R14
    	// shlVU processes backwards, but added a forward copy option 
    	// since its faster on POWER
    repeat:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/doc.go

    The following is a brief description of the BC instruction and its commonly
    used operands.
    
    BC op1, op2, op3
    
    	  op1: type of branch
    	      16 -> bctr (branch on ctr)
    	      12 -> bcr  (branch if cr bit is set)
    	      8  -> bcr+bctr (branch on ctr and cr values)
    		4  -> bcr != 0 (branch if specified cr bit is not set)
    
    		There are more combinations but these are the most common.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    			TrustBundle: mustMakeRoot(t, "root1"),
    		},
    	}
    
    	ctb2 := &certificatesv1alpha1.ClusterTrustBundle{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "ctb2",
    		},
    		Spec: certificatesv1alpha1.ClusterTrustBundleSpec{
    			TrustBundle: mustMakeRoot(t, "root2"),
    		},
    	}
    
    	kc := fake.NewSimpleClientset(ctb1, ctb2)
    
    	informerFactory := informers.NewSharedInformerFactoryWithOptions(kc, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top