Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 54 for x1 (0.52 seconds)

  1. guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

          retVal &= Enums.getIfPresent(enumType, sampleData[i & 255]).isPresent();
        }
        return retVal;
      }
    
      private enum SmallEnum {
        X0,
        X1,
        X2
      }
    
      private enum MediumEnum {
        X0,
        X1,
        X2,
        X3,
        X4,
        X5,
        X6,
        X7,
        X8,
        X9,
        X10,
        X11,
        X12,
        X13,
        X14,
        X15,
        X16,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 29.4K bytes
    - Click Count (0)
  2. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

          retVal &= Enums.getIfPresent(enumType, sampleData[i & 255]).isPresent();
        }
        return retVal;
      }
    
      private enum SmallEnum {
        X0,
        X1,
        X2
      }
    
      private enum MediumEnum {
        X0,
        X1,
        X2,
        X3,
        X4,
        X5,
        X6,
        X7,
        X8,
        X9,
        X10,
        X11,
        X12,
        X13,
        X14,
        X15,
        X16,
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 29.4K bytes
    - Click Count (0)
  3. src/cmd/asm/internal/asm/asm.go

    			x0 := p.getConstant(prog, op, &a[0])
    			x1 := p.getConstant(prog, op, &a[1])
    			x2 := int64(p.getRegister(prog, op, &a[2]))
    			x3 := int64(p.getRegister(prog, op, &a[3]))
    			x4 := int64(p.getRegister(prog, op, &a[4]))
    			x5 := p.getConstant(prog, op, &a[5])
    			// Cond is handled specially for this instruction.
    			offset, MRC, ok := arch.ARMMRCOffset(op, cond, x0, x1, x2, x3, x4, x5)
    			if !ok {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 17:02:17 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  4. src/main/webapp/js/purify.min.js

    text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),F=i(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","lar...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  5. src/cmd/asm/internal/asm/testdata/riscv64.s

    	MOVF	F0, F1					// d3000020
    	MOVF	X1, F3					// d38100f0
    	MOVF	F3, X1					// d38001e0
    	MOVF	X0, F3					// d30100f0
    	MOVF	$(0.0), F3				// d30100f0
    
    	// Converted to load of symbol (AUIPC + FLW)
    	MOVF	$(709.78271289338397), F3		// 970f000087a10f00
    
    	MOVD	4(X5), F0				// 07b04200
    	MOVD	F0, 4(X5)				// 27b20200
    	MOVD	F0, F1					// d3000022
    	MOVD	F3, X1					// d38001e2
    	MOVD	X1, F3					// d38100f2
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Sat Apr 04 05:25:40 GMT 2026
    - 74.2K bytes
    - Click Count (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_ifma.s

    	VPMADD52HUQ X7, X11, K1, X1                        // 62f2a509b5cf
    	VPMADD52HUQ X0, X11, K1, X1                        // 62f2a509b5c8
    	VPMADD52HUQ 17(SP)(BP*2), X11, K1, X1              // 62f2a509b58c6c11000000
    	VPMADD52HUQ -7(DI)(R8*4), X11, K1, X1              // 62b2a509b58c87f9ffffff
    	VPMADD52HUQ X7, X31, K1, X1                        // 62f28501b5cf
    	VPMADD52HUQ X0, X31, K1, X1                        // 62f28501b5c8
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 13.2K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/Range.java

        /*
         * For an explanation of the basic principle behind this check, see
         * https://stackoverflow.com/a/35754308/28465
         *
         * In that explanation's notation, our `overlap` check would be `x1 < y2 && y1 < x2`. We've
         * flipped one part of the check so that we're using "less than" in both cases (rather than a
         * mix of "less than" and "greater than"). We've also switched to "strictly less than" rather
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 28K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/Range.java

        /*
         * For an explanation of the basic principle behind this check, see
         * https://stackoverflow.com/a/35754308/28465
         *
         * In that explanation's notation, our `overlap` check would be `x1 < y2 && y1 < x2`. We've
         * flipped one part of the check so that we're using "less than" in both cases (rather than a
         * mix of "less than" and "greater than"). We've also switched to "strictly less than" rather
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 28.3K bytes
    - Click Count (0)
  9. src/cmd/asm/internal/asm/testdata/avx512enc/gfni_avx512f.s

    	VGF2P8AFFINEQB $94, (R15), Z15, K1, Z30            // 62438549ce375e
    	VGF2P8MULB X15, X1, K7, X7                         // 62d2750fcfff
    	VGF2P8MULB X12, X1, K7, X7                         // 62d2750fcffc
    	VGF2P8MULB X0, X1, K7, X7                          // 62f2750fcff8
    	VGF2P8MULB 15(R8), X1, K7, X7                      // 62d2750fcfb80f000000
    	VGF2P8MULB (BP), X1, K7, X7                        // 62f2750fcf7d00
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 22.6K bytes
    - Click Count (0)
  10. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VCVTPS2QQ X19, K3, X1                              // 62b17d0b7bcb
    	VCVTPS2QQ X13, K3, X1                              // 62d17d0b7bcd
    	VCVTPS2QQ X2, K3, X1                               // 62f17d0b7bca
    	VCVTPS2QQ (BX), K3, X1                             // 62f17d0b7b0b
    	VCVTPS2QQ -17(BP)(SI*1), K3, X1                    // 62f17d0b7b8c35efffffff
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 194.8K bytes
    - Click Count (0)
Back to Top