Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for xlsb (0.18 sec)

  1. src/math/big/bits_test.go

    // they are added: Bits{0, 1, 0}.Float() == 2**0 + 2**1 + 2**0 = 4.
    func (bits Bits) Float() *Float {
    	// handle 0
    	if len(bits) == 0 {
    		return new(Float)
    	}
    	// len(bits) > 0
    
    	// determine lsb exponent
    	var min int
    	for i, b := range bits {
    		if i == 0 || b < min {
    			min = b
    		}
    	}
    
    	// create bit pattern
    	x := NewInt(0)
    	for _, b := range bits {
    		badj := b - min
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // encodes the lsb and width for arm(64) bitfield ops into the expected auxInt format.
    func armBFAuxInt(lsb, width int64) arm64BitField {
    	if lsb < 0 || lsb > 63 {
    		panic("ARM(64) bit field lsb constant out of range")
    	}
    	if width < 1 || lsb+width > 64 {
    		panic("ARM(64) bit field width constant out of range")
    	}
    	return arm64BitField(width | lsb<<8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/math/sqrt.go

    		ix <<= 1
    	}
    	exp >>= 1 // exp = exp/2, exponent of square root
    	// generate sqrt(x) bit by bit
    	ix <<= 1
    	var q, s uint64               // q = sqrt(x)
    	r := uint64(1 << (shift + 1)) // r = moving bit from MSB to LSB
    	for r != 0 {
    		t := s + r
    		if t <= ix {
    			s = t + r
    			ix -= t
    			q += r
    		}
    		ix <<= 1
    		r >>= 1
    	}
    	// final rounding
    	if ix != 0 { // remainder, result not exact
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	// SBFIZ <Wd>, <Wn>, #<lsb>, #<width>
    	{0xffc00000, 0x13000000, SBFIZ, instArgs{arg_Wd, arg_Wn, arg_immediate_SBFIZ_SBFM_32M_bitfield_lsb_32_immr, arg_immediate_SBFIZ_SBFM_32M_bitfield_width_32_imms}, sbfiz_sbfm_32m_bitfield_cond},
    	// SBFX <Wd>, <Wn>, #<lsb>, #<width>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// bitfield ops
    		// for all bitfield ops lsb is auxInt>>8, width is auxInt&0xff
    		// insert low width bits of arg1 into the result starting at bit lsb, copy other bits from arg0
    		{name: "BFI", argLength: 2, reg: gp21nog, asm: "BFI", aux: "ARM64BitField", resultInArg0: true},
    		// extract width bits of arg1 starting at bit lsb and insert at low end of result, copy other bits from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32.go

    // Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32,
    // checksum. See https://en.wikipedia.org/wiki/Cyclic_redundancy_check for
    // information.
    //
    // Polynomials are represented in LSB-first form also known as reversed representation.
    //
    // See https://en.wikipedia.org/wiki/Mathematics_of_cyclic_redundancy_checks#Reversed_representations_and_reciprocal_polynomials
    // for information.
    package crc32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [%d]", v.AuxInt)
    	case auxUInt8:
    		return fmt.Sprintf(" [%d]", v.AuxUInt8())
    	case auxARM64BitField:
    		lsb := v.AuxArm64BitField().getARM64BFlsb()
    		width := v.AuxArm64BitField().getARM64BFwidth()
    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

        // public ResponseData call() throws Exception {
        // String[] urls =
        // new String[] {
        // "http://.../",
        // "http://.../test.pdf",
        // "http://.../test.doc",
        // "http://.../test.xls",
        // "http://.../test.ppt",
        // "http://.../test.txt", };
        // for (String url : urls) {
        // ResponseData responseData = httpClient.doGet(url);
        // // assertEquals(200, responseData.getHttpStatusCode());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/packaging/deb/init.d/fess

    PATH=/bin:/usr/bin:/sbin:/usr/sbin
    NAME=fess
    DESC="Fess Server"
    DEFAULT=/etc/default/$NAME
    
    if [ `id -u` -ne 0 ]; then
    	echo "You need root privileges to run this script"
    	exit 1
    fi
    
    
    . /lib/lsb/init-functions
    
    if [ -r /etc/default/rcS ]; then
    	. /etc/default/rcS
    fi
    
    # The following variables can be overwritten in $DEFAULT
    
    # Run Fess as this user ID and group ID
    FESS_USER=${packaging.fess.user}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	d.storage[d.n] = d.dsbyte
    	d.n++
    	for d.n < d.rate {
    		d.storage[d.n] = 0
    		d.n++
    	}
    	// This adds the final one bit for the padding. Because of the way that
    	// bits are numbered from the LSB upwards, the final bit is the MSB of
    	// the last byte.
    	d.storage[d.rate-1] ^= 0x80
    	// Apply the permutation
    	d.permute()
    	d.state = spongeSqueezing
    	d.n = d.rate
    	copyOut(d, d.storage[:d.rate])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top