Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 975 for z$ (0.23 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    //       both ops are in the same block.
    (CMPconst [0] z:((ADD|AND|ANDN|OR|SUB|NOR|XOR) x y)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    (CMPconst [0] z:((NEG|CNTLZD|RLDICL) x)) && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    // Note: ADDCCconst only assembles to 1 instruction for int16 constants.
    (CMPconst [0] z:(ADDconst [c] x)) && int64(int16(c)) == c && v.Block == z.Block => (CMPconst [0] convertPPC64OpToOpCC(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/math/LessThanBenchmark.java

          int y = yInts[j];
          int z = constant[j];
          tmp += z + ((x < y) ? 1 : 0);
        }
        return tmp;
      }
    
      @Benchmark
      int ternaryLtIntAddInsideTernary(int reps) {
        int tmp = 0;
        for (int i = 0; i < reps; i++) {
          int j = i & SAMPLE_MASK;
          int x = xInts[j];
          int y = yInts[j];
          int z = constant[j];
          tmp += (x < y) ? z + 1 : z;
        }
        return tmp;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
  3. src/math/big/floatmarsh.go

    	}
    
    	oldPrec := z.prec
    	oldMode := z.mode
    
    	b := buf[1]
    	z.mode = RoundingMode((b >> 5) & 7)
    	z.acc = Accuracy((b>>3)&3) - 1
    	z.form = form((b >> 1) & 3)
    	z.neg = b&1 != 0
    	z.prec = byteorder.BeUint32(buf[2:])
    
    	if z.form == finite {
    		if len(buf) < 10 {
    			return errors.New("Float.GobDecode: buffer too small for finite form float")
    		}
    		z.exp = int32(byteorder.BeUint32(buf[6:]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. test/cmp.go

    		var z = [2]string{"1", "hi"}
    
    		isfalse(x == y)
    		isfalse(y == x)
    		isfalse(y == z)
    		isfalse(z == y)
    		istrue(x == z)
    		istrue(z == x)
    
    		istrue(x != y)
    		istrue(y != x)
    		istrue(y != z)
    		istrue(z != y)
    		isfalse(x != z)
    		isfalse(z != x)
    
    		var m = make(map[[2]string]int)
    		m[x] = 10
    		m[y] = 20
    		m[z] = 30
    		istrue(m[x] == 30)
    		istrue(m[y] == 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 26 03:38:21 UTC 2015
    - 7.6K bytes
    - Viewed (0)
  5. test/codegen/logic.go

    func andWithUse(x, y int) int {
    	z := x & y
    	// amd64:`TESTQ\s(AX, AX|BX, BX|CX, CX|DX, DX|SI, SI|DI, DI|R8, R8|R9, R9|R10, R10|R11, R11|R12, R12|R13, R13|R15, R15)`
    	if z == 0 {
    		return 77
    	}
    	// use z by returning it
    	return z
    }
    
    // Verify (OR x (NOT y)) rewrites to (ORN x y) where supported
    func ornot(x, y int) int {
    	// ppc64x:"ORN"
    	z := x | ^y
    	return z
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 16:32:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. internal/bucket/replication/datatypes_gen.go

    		err = msgp.WrapError(err)
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z StatusType) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	o = msgp.AppendString(o, string(z))
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *StatusType) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	{
    		var zb0001 string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_gobuild_import.txt

    cd z
    exec $WORK/testimport$GOEXE other/x/y/z/w .
    stdout w2.go
    
    # GO111MODULE=on outside GOPATH/src
    env GO111MODULE=
    exec $WORK/testimport$GOEXE other/x/y/z/w .
    stdout w2.go
    env GO111MODULE=on
    exec $WORK/testimport$GOEXE other/x/y/z/w .
    stdout w2.go
    
    # GO111MODULE=on in GOPATH/src
    cd $GOPATH/src
    env GO111MODULE=
    exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. test/codegen/bmi.go

    	s = x[i] >> i
    	// amd64/v3: `SHLXQ\t[A-Z]+[0-9]*, 8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*8\), [A-Z]+[0-9]*`
    	s = x[i+1] << s
    	return s
    }
    
    func shlrx32_load(x []uint32, i int, s uint32) uint32 {
    	// amd64/v3: `SHRXL\t[A-Z]+[0-9]*, \([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s = x[i] >> i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_ppc64x.s

    	PCALIGN	$16
    
    loop:
    	MOVD	0(R4), R14	// x[i]
    	MOVD	8(R4), R16	// x[i+1]
    	MOVD	16(R4), R18	// x[i+2]
    	MOVD	24(R4), R20	// x[i+3]
    	MOVD	0(R3), R15	// z[i]
    	MOVD	8(R3), R17	// z[i+1]
    	MOVD	16(R3), R19	// z[i+2]
    	MOVD	24(R3), R21	// z[i+3]
    	MULLD	R5, R14, R10	// low x[i]*y
    	MULHDU	R5, R14, R11	// high x[i]*y
    	ADDC	R15, R10
    	ADDZE	R11
    	ADDC	R9, R10
    	ADDZE	R11, R9
    	MULLD	R5, R16, R14	// low x[i+1]*y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:32:43 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. test/abi/named_return_stuff.go

    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    	fmt.Println()
    
    	y = K("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z = K("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top