Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 167 for insta (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  2. src/regexp/onepass.go

    			if matchArg {
    				inst.Out, inst.Arg = inst.Arg, inst.Out
    				matchOut, matchArg = matchArg, matchOut
    			}
    			if matchOut {
    				m[pc] = true
    				inst.Op = syntax.InstAltMatch
    			}
    
    			// build a dispatch operator from the two legs of the alt.
    			onePassRunes[pc], inst.Next = mergeRuneSets(
    				&onePassRunes[inst.Out], &onePassRunes[inst.Arg], inst.Out, inst.Arg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/lookup.go

    }
    
    func (l *instanceLookup) lookup(inst *Named) *Named {
    	for _, t := range l.buf {
    		if t != nil && Identical(inst, t) {
    			return t
    		}
    	}
    	for _, t := range l.m[inst.Origin()] {
    		if Identical(inst, t) {
    			return t
    		}
    	}
    	return nil
    }
    
    func (l *instanceLookup) add(inst *Named) {
    	for i, t := range l.buf {
    		if t == nil {
    			l.buf[i] = inst
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/go/types/lookup.go

    }
    
    func (l *instanceLookup) lookup(inst *Named) *Named {
    	for _, t := range l.buf {
    		if t != nil && Identical(inst, t) {
    			return t
    		}
    	}
    	for _, t := range l.m[inst.Origin()] {
    		if Identical(inst, t) {
    			return t
    		}
    	}
    	return nil
    }
    
    func (l *instanceLookup) add(inst *Named) {
    	for i, t := range l.buf {
    		if t == nil {
    			l.buf[i] = inst
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    }
    
    func cinv_csinv_32_condsel_cond(instr uint32) bool {
    	return instr&0x1f0000 != 0x1f0000 && instr&0xe000 != 0xe000 && instr&0x3e0 != 0x3e0 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    
    func cinv_csinv_64_condsel_cond(instr uint32) bool {
    	return instr&0x1f0000 != 0x1f0000 && instr&0xe000 != 0xe000 && instr&0x3e0 != 0x3e0 && (instr>>5)&0x1f == (instr>>16)&0x1f
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/internal/DisconnectableInputStreamTest.groovy

            assertReads(instr, "test1")
            assertReads(instr, "test2")
            assertReads(instr, "end")
    
            def nread = instr.read(new byte[20])
            assertThat(nread, equalTo(-1))
    
            instr.close()
        }
    
        @Test
        void canReadSingleChars() {
            def instr = new DisconnectableInputStream(stream("abc"), toActionExecuter(executorFactory))
    
            assertThat((char) instr.read(), equalTo('a'.charAt(0)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			name := []string{"pli", "pla"}
    			str = fmt.Sprintf("%s %s,%s",
    				name[r&1],
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    		} else {
    			str = fmt.Sprintf("%s %s,%s,%s", opName,
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    			if r == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    // byte order ord.
    func Decode(src []byte, ord binary.ByteOrder) (inst Inst, err error) {
    	if len(src) < 4 {
    		return inst, errShort
    	}
    	if decoderCover == nil {
    		decoderCover = make([]bool, len(instFormats))
    	}
    	inst.Len = 4
    	ui_extn := [2]uint32{ord.Uint32(src[:inst.Len]), 0}
    	ui := uint64(ui_extn[0]) << 32
    	inst.Enc = ui_extn[0]
    	opcode := inst.Enc >> 26
    	if opcode == prefixOpcode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/gnu.go

    func GNUSyntax(inst Inst) string {
    	switch inst.Op {
    	case RET:
    		if r, ok := inst.Args[0].(Reg); ok && r == X30 {
    			return "ret"
    		}
    	case B:
    		if _, ok := inst.Args[0].(Cond); ok {
    			return strings.ToLower("b." + inst.Args[0].String() + " " + inst.Args[1].String())
    		}
    	case SYSL:
    		result := strings.ToLower(inst.String())
    		return strings.Replace(result, "c", "C", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  10. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedCodecTest.groovy

            when:
            def instr = new ByteArrayInputStream(outstr.toByteArray())
            def decoder = new KryoBackedDecoder(instr)
    
            then:
            instr.available() == 4108
            decoder.readPosition == 0
    
            when:
            decoder.readBoolean()
            decoder.readByte()
            decoder.readLong()
    
            then:
            instr.available() == 12 // decoder has buffered from instr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top