Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for __bits (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// insert low width bits of arg0 into the result starting at bit lsb, bits to the left of the inserted bit field are set to the high/sign bit of the inserted bit field, bits to the right are zeroed
    		{name: "SBFIZ", argLength: 1, reg: gp11, asm: "SBFIZ", aux: "ARM64BitField"},
    		// extract width bits of arg0 starting at bit lsb and insert at low end of result, remaining high bits are set to the high/sign bit of the extracted bitfield
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    		return 0
    	}
    	// TODO: would it make sense to return an arch-specific
    	// alignment depending on section type? E.g. STEXT => 32,
    	// SDATA => 1, etc?
    	abits := l.align[i]
    	if abits == 0 {
    		return 0
    	}
    	return int32(1 << (abits - 1))
    }
    
    // SetSymAlign sets the alignment for a symbol.
    func (l *Loader) SetSymAlign(i Sym, align int32) {
    	// Reject nonsense alignments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/hash/crc32/crc32_table_ppc64le.s

    // Code generated by "go run gen_const_ppc64le.go"; DO NOT EDIT.
    
    #include "textflag.h"
    
    	/* Reduce 262144 kbits to 1024 bits */
    	/* x^261184 mod p(x), x^261120 mod p(x) */
    DATA ·IEEEConst+0(SB)/8,$0x0000000099ea94a8
    DATA ·IEEEConst+8(SB)/8,$0x00000001651797d2
    
    	/* x^260160 mod p(x), x^260096 mod p(x) */
    DATA ·IEEEConst+16(SB)/8,$0x00000000945a8420
    DATA ·IEEEConst+24(SB)/8,$0x0000000021e0d56c
    
    	/* x^259136 mod p(x), x^259072 mod p(x) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                max=ops.convert_to_tensor(self._max[1]),
                num_bits=8,
                narrow_range=False,
            )
    
            out = math_ops.matmul(x, y)
            if self._bias is not None:
              out = nn_ops.bias_add(out, self._bias)
            if activation_fn is not None:
              out = activation_fn(out)
            out = array_ops.fake_quant_with_min_max_vars(
                out,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/runtime/export_test.go

    		lock(&mheap_.lock)
    		mheap_.spanalloc.free(unsafe.Pointer(s))
    		unlock(&mheap_.lock)
    	})
    }
    
    func MSpanCountAlloc(ms *MSpan, bits []byte) int {
    	s := (*mspan)(ms)
    	s.nelems = uint16(len(bits) * 8)
    	s.gcmarkBits = (*gcBits)(unsafe.Pointer(&bits[0]))
    	result := s.countAlloc()
    	s.gcmarkBits = nil
    	return result
    }
    
    const (
    	TimeHistSubBucketBits = timeHistSubBucketBits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	data := NewAt(typ.Elem(), val.UnsafePointer())
    	heapBits := GCBits(data.Interface())
    	// Repeat the bitmap for the slice size, trimming scalars in
    	// the last element.
    	bits = trimBitmap(rep(cap, bits))
    	if bytes.Equal(heapBits, bits) {
    		return
    	}
    	if len(heapBits) > len(bits) && bytes.Equal(heapBits[:len(bits)], bits) {
    		// Just the prefix matching is OK.
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      auto _radius = _o->radius;
      auto _bias = _o->bias;
      auto _alpha = _o->alpha;
      auto _beta = _o->beta;
      return tflite::CreateLocalResponseNormalizationOptions(
          _fbb,
          _radius,
          _bias,
          _alpha,
          _beta);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top