Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,729 for v$ (0.03 sec)

  1. src/cmd/compile/internal/ssa/rewriteWasm.go

    	case OpDiv64F:
    		v.Op = OpWasmF64Div
    		return true
    	case OpDiv64u:
    		v.Op = OpWasmI64DivU
    		return true
    	case OpDiv8:
    		return rewriteValueWasm_OpDiv8(v)
    	case OpDiv8u:
    		return rewriteValueWasm_OpDiv8u(v)
    	case OpEq16:
    		return rewriteValueWasm_OpEq16(v)
    	case OpEq32:
    		return rewriteValueWasm_OpEq32(v)
    	case OpEq32F:
    		v.Op = OpWasmF32Eq
    		return true
    	case OpEq64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  2. src/internal/fuzz/minimize.go

    		if !try(candidate) {
    			continue
    		}
    		// Update v to delete the value at index i.
    		copy(v[i:], v[i+1:])
    		v = v[:len(candidate)]
    		// v[i] is now different, so decrement i to redo this iteration
    		// of the loop with the new value.
    		i--
    	}
    
    	// Then, try to remove each possible subset of bytes.
    	for i := 0; i < len(v)-1; i++ {
    		copy(tmp, v[:i])
    		for j := len(v); j > i+1; j-- {
    			if shouldStop() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 21:15:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapTestSuiteBuilder.java

     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    public class ListMultimapTestSuiteBuilder<K, V>
        extends MultimapTestSuiteBuilder<K, V, ListMultimap<K, V>> {
    
      public static <K, V> ListMultimapTestSuiteBuilder<K, V> using(
          TestListMultimapGenerator<K, V> generator) {
        ListMultimapTestSuiteBuilder<K, V> result = new ListMultimapTestSuiteBuilder<>();
        result.usingGenerator(generator);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/internal/byteorder/byteorder.go

    	b[0] = byte(v >> 56)
    	b[1] = byte(v >> 48)
    	b[2] = byte(v >> 40)
    	b[3] = byte(v >> 32)
    	b[4] = byte(v >> 24)
    	b[5] = byte(v >> 16)
    	b[6] = byte(v >> 8)
    	b[7] = byte(v)
    }
    
    func BeAppendUint64(b []byte, v uint64) []byte {
    	return append(b,
    		byte(v>>56),
    		byte(v>>48),
    		byte(v>>40),
    		byte(v>>32),
    		byte(v>>24),
    		byte(v>>16),
    		byte(v>>8),
    		byte(v),
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. test/ken/ptrfun.go

    func (this *C) f()int {
    	return this.a;
    }
    
    func
    main() {
    	var v int;
    	var c *C;
    
    	c = new(C);
    	c.a = 6;
    	c.x = g;
    
    	v = g(c);
    	if v != 6 { panic(v); }
    
    	v = c.x(c);
    	if v != 6 { panic(v); }
    
    	v = c.f();
    	if v != 6 { panic(v); }
    }
    
    func g(p *C)int {
    	var v int;
    
    	v = p.a;
    	if v != 6 { panic(v); }
    	return p.a;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 617 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/softfloat.go

    					v.Op = OpConst64
    					v.Type = f.Config.Types.UInt64
    				case OpNeg32F:
    					arg0 := v.Args[0]
    					v.reset(OpXor32)
    					v.Type = f.Config.Types.UInt32
    					v.AddArg(arg0)
    					mask := v.Block.NewValue0(v.Pos, OpConst32, v.Type)
    					mask.AuxInt = -0x80000000
    					v.AddArg(mask)
    				case OpNeg64F:
    					arg0 := v.Args[0]
    					v.reset(OpXor64)
    					v.Type = f.Config.Types.UInt64
    					v.AddArg(arg0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. src/crypto/internal/edwards25519/field/fe.go

    	v.l0 += 19 * c
    
    	v.l1 += v.l0 >> 51
    	v.l0 = v.l0 & maskLow51Bits
    	v.l2 += v.l1 >> 51
    	v.l1 = v.l1 & maskLow51Bits
    	v.l3 += v.l2 >> 51
    	v.l2 = v.l2 & maskLow51Bits
    	v.l4 += v.l3 >> 51
    	v.l3 = v.l3 & maskLow51Bits
    	// no additional carry
    	v.l4 = v.l4 & maskLow51Bits
    
    	return v
    }
    
    // Add sets v = a + b, and returns v.
    func (v *Element) Add(a, b *Element) *Element {
    	v.l0 = a.l0 + b.l0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/check.go

    				}
    				canHaveAux = true
    			case auxFlagConstant:
    				if v.AuxInt < 0 || v.AuxInt > 15 {
    					f.Fatalf("bad FlagConstant AuxInt value for %v", v)
    				}
    				canHaveAuxInt = true
    			default:
    				f.Fatalf("unknown aux type for %s", v.Op)
    			}
    			if !canHaveAux && v.Aux != nil {
    				f.Fatalf("value %s has an Aux value %v but shouldn't", v.LongString(), v.Aux)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. test/typeparam/mdempsky/17.go

    	}
    	return
    }
    
    func RangeArrayIface[V iface]() (k any, v iface) {
    	for k, v = range [...]V{zero[V]()} {
    	}
    	return
    }
    
    func RangeChanAny[V any]() (v any) {
    	for v = range chanOf(zero[V]()) {
    	}
    	return
    }
    
    func RangeChanIface[V iface]() (v iface) {
    	for v = range chanOf(zero[V]()) {
    	}
    	return
    }
    
    func RangeMapAny[K comparable, V any]() (k, v any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 21:35:49 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteAMD64splitload.go

    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (CMPBload {sym} [off] ptr x mem)
    	// result: (CMPB (MOVBload {sym} [off] ptr mem) x)
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		ptr := v_0
    		x := v_1
    		mem := v_2
    		v.reset(OpAMD64CMPB)
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVBload, typ.UInt8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top