Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for andc (0.06 sec)

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

    // Ands clear bits. Ors set bits.
    // If a subsequent Or will set all the bits
    // that an And cleared, we can skip the And.
    // This happens in bitmasking code like:
    //   x &^= 3 << shift // clear two old bits
    //   x  |= v << shift // set two new bits
    // when shift is a small constant and v ends up a constant 3.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "ANDQ", argLength: 2, reg: gp21, asm: "ANDQ", commutative: true, resultInArg0: true, clobberFlags: true},                                                 // arg0 & arg1
    		{name: "ANDL", argLength: 2, reg: gp21, asm: "ANDL", commutative: true, resultInArg0: true, clobberFlags: true},                                                 // arg0 & arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    	// match: (ANDI [x] (MOVDconst [y]))
    	// result: (MOVDconst [x & y])
    	for {
    		x := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpRISCV64MOVDconst {
    			break
    		}
    		y := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(x & y)
    		return true
    	}
    	// match: (ANDI [x] (ANDI [y] z))
    	// result: (ANDI [x & y] z)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&amalg;":                           "\u2a3f",
    	"&amp;":                             "\u0026",
    	"&and;":                             "\u2227",
    	"&andand;":                          "\u2a55",
    	"&andd;":                            "\u2a5c",
    	"&andslope;":                        "\u2a58",
    	"&andv;":                            "\u2a5a",
    	"&ang;":                             "\u2220",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	{AADD, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADC, C_ZREG, C_ZREG, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{AADC, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 1, 4, 0, 0, 0},
    	{ANEG, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 25, 4, 0, 0, 0},
    	{ANEG, C_NONE, C_NONE, C_NONE, C_ZREG, C_NONE, 25, 4, 0, 0, 0},
    	{ANGC, C_ZREG, C_NONE, C_NONE, C_ZREG, C_NONE, 17, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess.json

            },
            "indonesian_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_cloud/fess.json

            },
            "indonesian_stop": {
              "type":       "stop",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "type-check": "~0.4.0"
          },
          "engines": {
            "node": ">= 0.8.0"
          }
        },
        "node_modules/lines-and-columns": {
          "version": "1.2.4",
          "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
          "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
          "dev": true
        },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (SUB x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (SUBshiftRA x0 y [c])
    (AND x0 x1:(SLLconst [c] y)) && clobberIfDead(x1) => (ANDshiftLL x0 y [c])
    (AND x0 x1:(SRLconst [c] y)) && clobberIfDead(x1) => (ANDshiftRL x0 y [c])
    (AND x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (ANDshiftRA x0 y [c])
    (AND x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (ANDshiftRO x0 y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top