Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 81 for __bits (0.22 sec)

  1. 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)
  2. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_TLSM   = 0x24 // Module reference to TLS symbol
    	XCOFF_R_TLSML  = 0x25 // Module reference to local (own) module
    
    	XCOFF_R_TOCU = 0x30 // Relative to TOC - high order bits
    	XCOFF_R_TOCL = 0x31 // Relative to TOC - low order bits
    )
    
    type XcoffLdStr64 struct {
    	size uint16
    	name string
    }
    
    // xcoffFile is used to build XCOFF file.
    type xcoffFile struct {
    	xfhdr           XcoffFileHdr64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K 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/debug/elf/file_test.go

    	//   [    1] .text             PROGBITS        00000000 000034 000000 00  AX  0   0  1
    	//   [    2] .data             PROGBITS        00000000 000034 000000 00  WA  0   0  1
    	//   [    3] .bss              NOBITS          00000000 000034 000000 00  WA  0   0  1
    	//   [    4] section_0001      PROGBITS        00000000 000034 000004 00  WA  0   0  4
    	//   [    5] section_0002      PROGBITS        00000000 000038 000004 00  WA  0   0  4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. 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)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    blue, reddish white. [Illustration: FIG. 2.] _Obs._ 5. To determine the interval of the Glasses, or thickness of the interjacent Air, by which each Colour was produced, I measured the Diameters of the first six Rings at the most lucid part of their Orbits, and squaring them, I found their Squares to be in the arithmetical Progression of the odd Numbers, 1, 3, 5, 7, 9, 11. And since one of these Glasses was plane, and the other spherical, their Intervals at those Rings must be in the same Progression....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. src/testdata/Isaac.Newton-Opticks.txt

    [Illustration: FIG. 2.]
    
    _Obs._ 5. To determine the interval of the Glasses, or thickness of the
    interjacent Air, by which each Colour was produced, I measured the
    Diameters of the first six Rings at the most lucid part of their Orbits,
    and squaring them, I found their Squares to be in the arithmetical
    Progression of the odd Numbers, 1, 3, 5, 7, 9, 11. And since one of
    these Glasses was plane, and the other spherical, their Intervals at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&_)<<8)+(_>>8))%31){t.msg="incorrect header check",a.mode=ot;break}if((15&_)!==C){t.msg="unknown compression method",a.mode=ot;break}if(_>>>=4,dt-=4,yt=8+(15&_),0===a.wbits)a.wbits=yt;else if(yt>a.wbits){t.msg="invalid window size",a.mode=ot;break}a.dmax=1<<yt,t.adler=a.check=1,a.mode=512&_?j:M,_=0,dt=0;break;case O:for(;dt<16;){if(0===l)break t;l--,_+=n[s++]<<dt,dt+=8}if(a.flags=_,(255&a.flags)!==C){t.msg="unknown compression method",a.mode=ot...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top