Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Shift4 (0.12 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    	case 16: /* sll $c,[r1],r2 */
    		r := p.Reg
    		if r == obj.REG_NONE {
    			r = p.To.Reg
    		}
    		v := c.regoff(&p.From)
    
    		/* OP_SRR will use only the low 5 bits of the shift value */
    		if v >= 32 && vshift(p.As) {
    			o1 = OP_SRR(c.opirr(-p.As), uint32(v-32), r, p.To.Reg)
    		} else {
    			o1 = OP_SRR(c.opirr(p.As), uint32(v), r, p.To.Reg)
    		}
    
    	case 17:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    				// If the bit is 0, the pattern is already all 0s,
    				// but we can claim that the number of bits
    				// in the word is equal to the number we need (c),
    				// because right shift of bits will zero fill.
    				if pattern == 1 {
    					pattern = 1<<maxBits - 1
    					npattern = maxBits
    				} else {
    					npattern = c
    				}
    			} else {
    				b := pattern
    				nb := npattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

      // Fields
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final transient int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final transient int segmentShift;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      // Fields
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final transient int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final transient int segmentShift;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    				otxt := p.To.Target().Pc - pc
    
    				// On loong64, the immediate value field of the conditional branch instructions
    				// BFPT and BFPT is 21 bits, and the others are 16 bits. The jump target address
    				// is to logically shift the immediate value in the instruction code to the left
    				// by 2 bits and then sign extend.
    				bound := int64(1 << (18 - 1))
    
    				switch p.As {
    				case ABFPT, ABFPF:
    					bound = int64(1 << (23 - 1))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	// "-composites",
    	// "-copylocks",
    	"-directive",
    	"-errorsas",
    	// "-httpresponse",
    	"-ifaceassert",
    	// "-lostcancel",
    	// "-methods",
    	"-nilfunc",
    	"-printf",
    	// "-rangeloops",
    	// "-shift",
    	"-slog",
    	"-stringintconv",
    	// "-structtags",
    	// "-tests",
    	// "-unreachable",
    	// "-unsafeptr",
    	// "-unusedresult",
    }
    
    func runTest(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// style of the LLVM demangler. This does not affect
    	// the parsing of the AST, only the conversion of the AST
    	// to a string.
    	LLVMStyle
    )
    
    // maxLengthShift is how we shift the MaxLength value.
    const maxLengthShift = 16
    
    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    types. Examples of quantized types are TF_Qint8 or TF_Quint8.
    
    An example is TF_DequantizeOp, which converts a quantized type to a float.
    This op is rewritten to generic ops that perform the scale and shift
    and can operate on non-quantized types.
    
    Currently, TF_DequantizeOp is the only op with a lowering that falls
    in this category. When more lowerings are added (e.g. QuantizeV2Op),
    they should be added to this pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top