Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for Asm (0.14 sec)

  1. src/syscall/mkall.sh

    	;;
    linux_386)
    	mkerrors="$mkerrors -m32"
    	mksyscall="./mksyscall.pl -l32"
    	mksysnum="./mksysnum_linux.pl /usr/include/asm/unistd_32.h"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    linux_amd64)
    	unistd_h=$(ls -1 /usr/include/asm/unistd_64.h /usr/include/x86_64-linux-gnu/asm/unistd_64.h 2>/dev/null | head -1)
    	if [ "$unistd_h" = "" ]; then
    		echo >&2 cannot find unistd_64.h
    		exit 1
    	fi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    import org.gradle.model.internal.asm.MethodVisitorScope;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.Label;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    import org.objectweb.asm.Type;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Arrays;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    and those with more than 3 operands usually have operands in the same order except
    for the target operand, which is first in PPC64 asm and last in Go asm.
    
    Example:
    
    	ADD R3, R4, R5		<=>	add r5, r4, r3
    
    2. Constant operands
    
    In Go asm, an operand that starts with '$' indicates a constant value. If the
    instruction using the constant has an immediate version of the opcode, then an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/smiley.json

    {"Action":"output","Test":"Test☺☹","Output":"=== PAUSE Test☺☹\n"}
    {"Action":"pause","Test":"Test☺☹"}
    {"Action":"run","Test":"Test☺☹Asm"}
    {"Action":"output","Test":"Test☺☹Asm","Output":"=== RUN   Test☺☹Asm\n"}
    {"Action":"output","Test":"Test☺☹Asm","Output":"=== PAUSE Test☺☹Asm\n"}
    {"Action":"pause","Test":"Test☺☹Asm"}
    {"Action":"run","Test":"Test☺☹Dirs"}
    {"Action":"output","Test":"Test☺☹Dirs","Output":"=== RUN   Test☺☹Dirs\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.4K bytes
    - Viewed (0)
  5. src/crypto/cipher/gcm_test.go

    	newAESGCM := func(key []byte) (asm, generic cipher.AEAD, err error) {
    		block, err := aes.NewCipher(key[:])
    		if err != nil {
    			return nil, nil, err
    		}
    		asm, err = cipher.NewGCM(block)
    		if err != nil {
    			return nil, nil, err
    		}
    		generic, err = cipher.NewGCM(wrap(block))
    		if err != nil {
    			return nil, nil, err
    		}
    		return asm, generic, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    			v:    val("gcr.io/gke-release/asm", "1.11.2-asm.17"),
    			ann:  ann("distroless"),
    			want: "gcr.io/gke-release/asm/proxyv2:1.11.2-asm.17-distroless",
    		},
    		{
    			desc: "pc and annotation overrides imageType",
    			v:    val("gcr.io/gke-release/asm", "1.11.2-asm.17"),
    			pc:   pc("distroless"),
    			ann:  ann("debug"),
    			want: "gcr.io/gke-release/asm/proxyv2:1.11.2-asm.17-debug",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/operand_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"internal/buildcfg"
    	"strings"
    	"testing"
    
    	"cmd/asm/internal/arch"
    	"cmd/asm/internal/lex"
    	"cmd/internal/obj"
    )
    
    // A simple in-out test: Do we print what we parse?
    
    func setArch(goarch string) (*arch.Arch, *obj.Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

    import org.gradle.model.dsl.internal.transform.RuleVisitor;
    import org.objectweb.asm.AnnotationVisitor;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.FieldVisitor;
    import org.objectweb.asm.Handle;
    import org.objectweb.asm.Label;
    import org.objectweb.asm.MethodVisitor;
    import org.objectweb.asm.Opcodes;
    import org.objectweb.asm.Type;
    
    import javax.annotation.Nullable;
    import java.io.Closeable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/wasm/ssa.go

    		getValue64(s, v.Args[0])
    
    	case ssa.OpWasmSelect:
    		getValue64(s, v.Args[0])
    		getValue64(s, v.Args[1])
    		getValue32(s, v.Args[2])
    		s.Prog(v.Op.Asm())
    
    	case ssa.OpWasmI64AddConst:
    		getValue64(s, v.Args[0])
    		i64Const(s, v.AuxInt)
    		s.Prog(v.Op.Asm())
    
    	case ssa.OpWasmI64Const:
    		i64Const(s, v.AuxInt)
    
    	case ssa.OpWasmF32Const:
    		f32Const(s, v.AuxFloat())
    
    	case ssa.OpWasmF64Const:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            def app = new MixedLanguageHelloWorldApp(AbstractInstalledToolChainIntegrationSpec.toolChain)
            def asmSources = app.sourceFiles.findAll({it.path == 'asm'})
            def mainSources = app.headerFiles + app.sourceFiles.findAll({it.path != 'asm'})
            mainSources.removeAll {it.path == 'asm'}
            mainSources*.writeToDir(file("src/main"))
            asmSources*.writeToDir(file("src/input"))
            degenerateInputSources()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top