Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 747 for opcode (0.11 sec)

  1. src/cmd/internal/obj/dwarf.go

    	}
    
    	// Subtract from deltaPC and deltaLC the amounts that the opcode will add.
    	deltaPC -= uint64((opcode - OPCODE_BASE) / LINE_RANGE)
    	deltaLC -= (opcode-OPCODE_BASE)%LINE_RANGE + LINE_BASE
    
    	// Encode deltaPC.
    	if deltaPC != 0 {
    		if deltaPC <= PC_RANGE {
    			// Adjust the opcode so that we can use the 1-byte DW_LNS_const_add_pc
    			// instruction.
    			opcode -= LINE_RANGE * int64(PC_RANGE-deltaPC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                                                   String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/test/Task")) {
                             if (name.equals("isIncremental") && descriptor.equals("()Z") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                            String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/api/Rule")) {
                            if (name.equals("getDescription") && descriptor.equals("()Ljava/lang/String;") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/encoding/json/decode.go

    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		v = append(v, d.valueInterface())
    
    		// Next token must be , or ].
    		if d.opcode == scanSkipSpace {
    			d.scanWhile(scanSkipSpace)
    		}
    		if d.opcode == scanEndArray {
    			break
    		}
    		if d.opcode != scanArrayValue {
    			panic(phasePanicMsg)
    		}
    	}
    	return v
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

          }
        }
      }
    
      @Throws(IOException::class)
      private fun readMessageFrame() {
        val opcode = this.opcode
        if (opcode != OPCODE_TEXT && opcode != OPCODE_BINARY) {
          throw ProtocolException("Unknown opcode: ${opcode.toHexString()}")
        }
    
        readMessage()
    
        if (readingCompressedMessage) {
          val messageInflater =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/line.go

    	// ignore it.
    }
    
    // step processes the next opcode and updates r.state. If the opcode
    // emits a row in the line table, this updates *entry and returns
    // true.
    func (r *LineReader) step(entry *LineEntry) bool {
    	opcode := int(r.buf.uint8())
    
    	if opcode >= r.opcodeBase {
    		// Special opcode [DWARF2 6.2.5.1, DWARF4 6.2.5.1]
    		adjustedOpcode := opcode - r.opcodeBase
    		r.advancePC(adjustedOpcode / r.lineRange)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                    recordClassString;
    
            switch( opCode ) {
                case QUERY:
                    opCodeString = "QUERY";
                    break;
                case WACK:
                    opCodeString = "WACK";
                    break;
                default:
                    opCodeString = Integer.toString( opCode );
                    break;
            }
            switch( resultCode ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServicePacket.java

            switch ( this.opCode ) {
            case QUERY:
                opCodeString = "QUERY";
                break;
            case WACK:
                opCodeString = "WACK";
                break;
            default:
                opCodeString = Integer.toString(this.opCode);
                break;
            }
            switch ( this.resultCode ) {
            case FMT_ERR:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    		UD2, WBINVD, WRMSR, XEND, XLATB, XTEST:
    
    		if inst.Op == NOP && inst.Opcode>>24 != 0x90 {
    			break
    		}
    		if inst.Op == RET && inst.Opcode>>24 != 0xC3 {
    			break
    		}
    		if inst.Op == INT && inst.Opcode>>24 != 0xCC {
    			break
    		}
    		if inst.Op == LRET && inst.Opcode>>24 != 0xcb {
    			break
    		}
    		for i, p := range inst.Prefix {
    			if p&0xFF == PrefixDataSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                        }
                    }
    
                    @Override
                    public void visitFieldInsn(int opcode, String owner, String name, String desc) {
                        if ((opcode == Opcodes.GETSTATIC || opcode == Opcodes.PUTSTATIC) && CLASS_DESC.equals(desc)) {
                            ImplementationDependencyRelocator.ClassLiteralRemapping remapping = remapper.maybeRemap(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top