Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,797 for Opcode (0.19 sec)

  1. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/jvmbytecode/JvmBytecodeCallInterceptor.java

    import java.util.function.Supplier;
    
    public interface JvmBytecodeCallInterceptor extends FilterableBytecodeInterceptor {
        boolean visitMethodInsn(
                String className,
                int opcode,
                String owner,
                String name,
                String descriptor,
                boolean isInterface,
                Supplier<MethodNode> readMethodNode
        );
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:55:59 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	ATEXT
    	AUNDEF
    	A_ARCHSPECIFIC
    )
    
    // Each architecture is allotted a distinct subspace of opcode values
    // for declaring its arch-specific opcodes.
    // Within this subspace, the first arch-specific opcode should be
    // at offset A_ARCHSPECIFIC.
    //
    // Subspaces are aligned to a power of two so opcodes can be masked
    // with AMask and used as compact array indices.
    const (
    	ABase386 = (1 + iota) << 11
    	ABaseARM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameQueryResponse.java

        }
        int writeRDataWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readRDataWireFormat( byte[] src, int srcIndex ) {
            if( resultCode != 0 || opCode != QUERY ) {
                return 0;
            }
            boolean groupName = (( src[srcIndex] & 0x80 ) == 0x80 ) ? true : false;
            int nodeType = ( src[srcIndex] & 0x60 ) >> 5;
            srcIndex += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                @Override
                public void visitFieldInsn(int opcode, String owner, String name, String desc) {
                    mv.visitFieldInsn(opcode, remap(owner), name, remap(desc));
                }
    
                @Override
                public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean intf) {
                    mv.visitMethodInsn(opcode, remap(owner), name, remap(desc), intf);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameQueryResponse.java

        @Override
        int writeRDataWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        int readRDataWireFormat ( byte[] src, int srcIndex ) {
            if ( this.resultCode != 0 || this.opCode != QUERY ) {
                return 0;
            }
            boolean groupName = ( ( src[ srcIndex ] & 0x80 ) == 0x80 ) ? true : false;
            int nodeType = ( src[ srcIndex ] & 0x60 ) >> 5;
            srcIndex += 2;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  6. src/runtime/signal_plan9.go

    // and also update the constant values is os2_plan9.go.
    var sigtable = [...]sigTabT{
    	// Traps that we cannot be recovered.
    	{_SigThrow, "sys: trap: debug exception"},
    	{_SigThrow, "sys: trap: invalid opcode"},
    
    	// We can recover from some memory errors in runtime·sigpanic.
    	{_SigPanic, "sys: trap: fault read"},  // SIGRFAULT
    	{_SigPanic, "sys: trap: fault write"}, // SIGWFAULT
    
    	// We can also recover from math errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/amd64/versions_test.go

    	// Clobber all the non-v1 opcodes.
    	opcodes := map[string]bool{}
    	var features []string
    	for feature, opcodeList := range featureToOpcodes {
    		if runtimeFeatures[feature] {
    			features = append(features, fmt.Sprintf("cpu.%s=off", feature))
    		}
    		for _, op := range opcodeList {
    			opcodes[op] = true
    		}
    	}
    	clobber(t, os.Args[0], dst, opcodes)
    	if err = dst.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    			lastFunction = funcIdx // avoid printing same function twice
    		}
    
    		if o.negative {
    			fmt.Fprintf(&errbuf, "%s:%d: %s: wrong opcode found: %q\n", t.goFileName(), o.line, env, o.opcode.String())
    		} else {
    			fmt.Fprintf(&errbuf, "%s:%d: %s: opcode not found: %q\n", t.goFileName(), o.line, env, o.opcode.String())
    		}
    	}
    	return errors.New(errbuf.String())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/inst.go

    	}
    	return fmt.Sprintf("Mode(%d)", int(m))
    }
    
    // An Op is an ARM opcode.
    type Op uint16
    
    // NOTE: The actual Op values are defined in tables.go.
    // They are chosen to simplify instruction decoding and
    // are not a dense packing from 0 to N, although the
    // density is high, probably at least 90%.
    
    func (op Op) String() string {
    	if op >= Op(len(opstr)) || opstr[op] == "" {
    		return fmt.Sprintf("Op(%d)", int(op))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/list9.go

    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBasePPC64, REG_SPR0+1024, rconv)
    	// Note, the last entry in Anames is "LASTAOUT", it is not a real opcode.
    	obj.RegisterOpcode(obj.ABasePPC64, Anames[:len(Anames)-1])
    	obj.RegisterOpcode(AFIRSTGEN, GenAnames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    		// Special case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top