Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for argTypes (0.16 sec)

  1. src/runtime/asm_loong64.s

    	MOVV	f+8(FP), REGCTXT;			\
    	MOVV	(REGCTXT), R25;			\
    	PCDATA  $PCDATA_StackMapIndex, $0;	\
    	JAL	(R25);				\
    	/* copy return values back */		\
    	MOVV	regArgs+40(FP), R25;		\
    	JAL	·spillArgs(SB);		\
    	MOVV	argtype+0(FP), R7;		\
    	MOVV	arg+16(FP), R4;			\
    	MOVWU	n+24(FP), R5;			\
    	MOVWU	retoffset+28(FP), R6;		\
    	ADDV	$8, R3, R12;				\
    	ADDV	R6, R12; 			\
    	ADDV	R6, R4;				\
    	SUBVU	R6, R5;				\
    	JAL	callRet<>(SB);			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    		if frame.varp != 0 {
    			size := frame.varp - frame.sp
    			if size > 0 {
    				scanConservative(frame.sp, size, nil, gcw, state)
    			}
    		}
    
    		// Scan arguments to this frame.
    		if n := frame.argBytes(); n != 0 {
    			// TODO: We could pass the entry argument map
    			// to narrow this down further.
    			scanConservative(frame.argp, n, nil, gcw, state)
    		}
    
    		if isAsyncPreempt || isDebugCall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val kid: KaClassLikeSymbol
        }
    
        interface JsExternalArgument : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = JsExternalArgument::class
            val argType: KaType
        }
    
        interface WrongExportedDeclaration : KaFirDiagnostic<KtElement> {
            override val diagnosticClass get() = WrongExportedDeclaration::class
            val kind: String
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtDeclaration>(firDiagnostic, token), KaFirDiagnostic.JsExternalInheritorsOnly
    
    internal class JsExternalArgumentImpl(
        override val argType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtExpression>(firDiagnostic, token), KaFirDiagnostic.JsExternalArgument
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top