Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for pbit32 (0.15 sec)

  1. src/syscall/dir_plan9.go

    	}
    
    	for _, c := range d.Name {
    		if c == '/' {
    			return n, ErrBadName
    		}
    	}
    
    	b = pbit16(b, uint16(n)-2)
    	b = pbit16(b, d.Type)
    	b = pbit32(b, d.Dev)
    	b = pbit8(b, d.Qid.Type)
    	b = pbit32(b, d.Qid.Vers)
    	b = pbit64(b, d.Qid.Path)
    	b = pbit32(b, d.Mode)
    	b = pbit32(b, d.Atime)
    	b = pbit32(b, d.Mtime)
    	b = pbit64(b, uint64(d.Length))
    	b = pstring(b, d.Name)
    	b = pstring(b, d.Uid)
    	b = pstring(b, d.Gid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

        @VisibleForTesting
        static class HashCode128 extends HashCode {
            private final long bits1;
            private final long bits2;
    
            public HashCode128(long bits1, long bits2) {
                this.bits1 = bits1;
                this.bits2 = bits2;
            }
    
            @Override
            public int length() {
                return 16;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	IntStr     int64   `json:",string"`
    	UintptrStr uintptr `json:",string"`
    
    	PBool    *bool
    	PInt     *int
    	PInt8    *int8
    	PInt16   *int16
    	PInt32   *int32
    	PInt64   *int64
    	PUint    *uint
    	PUint8   *uint8
    	PUint16  *uint16
    	PUint32  *uint32
    	PUint64  *uint64
    	PUintptr *uintptr
    	PFloat32 *float32
    	PFloat64 *float64
    
    	String  string
    	PString *string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

            <match value="1" type="big32" offset="12"/>
            <match value="2" type="big32" offset="12"/>
            <match value="3" type="big32" offset="12"/>
            <match value="4" type="big32" offset="12"/>
            <match value="5" type="big32" offset="12"/>
            <match value="6" type="big32" offset="12"/>
            <match value="7" type="big32" offset="12"/>
          </match>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/hash/HashTestUtils.java

        Random rand = new Random(0);
        int keyBits = 32;
        int hashBits = function.bits();
        for (int bit1 = 0; bit1 < keyBits; bit1++) {
          for (int bit2 = 0; bit2 < keyBits; bit2++) {
            if (bit2 <= bit1) continue;
            int delta = (1 << bit1) | (1 << bit2);
            int[] same = new int[hashBits];
            int[] diff = new int[hashBits];
            // go through trials to compute probability
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  6. src/internal/trace/internal/oldtrace/parser.go

    		}
    
    		var pid32 int32
    		if pid == math.MaxUint64 {
    			pid32 = -1
    		} else {
    			pid32 = int32(pid)
    		}
    
    		v, err := p.readVal()
    		if err != nil {
    			return err
    		}
    
    		*ev = rawEvent{
    			typ:         EvBatch,
    			args:        p.args[:0],
    			batchPid:    pid32,
    			batchOffset: off,
    		}
    		ev.args = append(ev.args, pid, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/mop_test.go

    		ch <- true
    	}()
    	a = [5]int{1, 2, 3, 4, 5}
    	<-ch
    }
    
    // Blows up a naive compiler.
    func TestRaceNestedArrayCopy(t *testing.T) {
    	ch := make(chan bool, 1)
    	type (
    		Point32   [2][2][2][2][2]Point
    		Point1024 [2][2][2][2][2]Point32
    		Point32k  [2][2][2][2][2]Point1024
    		Point1M   [2][2][2][2][2]Point32k
    	)
    	var a, b Point1M
    	go func() {
    		a[0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1].y = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <p>
    This last example exploits the <a href="#Constant_declarations">implicit repetition</a>
    of the last non-empty expression list.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <p>
    This last example exploits the <a href="#Constant_declarations">implicit repetition</a>
    of the last non-empty expression list.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top