Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 0x0FFFFFFF (0.21 sec)

  1. src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java

            SMBUtil.writeInt2(this.locks.length, dst, dstIndex + 2);
            dstIndex += 4;
            SMBUtil.writeInt4( ( ( this.lockSequenceNumber & 0xF ) << 28 ) | ( this.lockSequenceIndex & 0x0FFFFFFF ), dst, dstIndex);
            dstIndex += 4;
            System.arraycopy(this.fileId, 0, dst, dstIndex, 16);
            dstIndex += 16;
    
            for ( Smb2Lock l : this.locks ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite_test.go

    	}{
    		// ((x<<4)&0xFF00)<<4
    		{newPPC64ShiftAuxInt(4, 56, 63, 64), encodePPC64RotateMask(4, 0xFF00, 32), false, 0, 0},
    		// ((x>>4)&0xFF)<<4
    		{newPPC64ShiftAuxInt(4, 56, 63, 64), encodePPC64RotateMask(28, 0x0FFFFFFF, 32), true, 0, 0xFF0},
    		// ((x>>4)&0xFFFF)<<4
    		{newPPC64ShiftAuxInt(4, 48, 63, 64), encodePPC64RotateMask(28, 0xFFFF, 32), true, 0, 0xFFFF0},
    		// ((x>>4)&0xFFFF)<<17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    	{0x0fe00010, 0x01e00000, 1, MVN_EQ, 0x14011c04, instArgs{arg_R_12, arg_R_shift_imm}},                          // MVN{S}<c> <Rd>,<Rm>{,<shift>} cond:4|0|0|0|1|1|1|1|S|(0)|(0)|(0)|(0)|Rd:4|imm5:5|type:2|0|Rm:4
    	{0x0fffffff, 0x0320f000, 4, NOP_EQ, 0x1c04, instArgs{}},                                                       // NOP<c> cond:4|0|0|1|1|0|0|1|0|0|0|0|0|(1)|(1)|(1)|(1)|(0)|(0)|(0)|(0)|0|0|0|0|0|0|0|0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/arith_test.go

    // license that can be found in the LICENSE file.
    
    // Tests arithmetic expressions
    
    package main
    
    import (
    	"math"
    	"runtime"
    	"testing"
    )
    
    const (
    	y = 0x0fffFFFF
    )
    
    var (
    	g8  int8
    	g16 int16
    	g32 int32
    	g64 int64
    )
    
    //go:noinline
    func lshNop1(x uint64) uint64 {
    	// two outer shifts should be removed
    	return (((x << 5) >> 2) << 2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    func elfhash(name string) uint32 {
    	var h uint32
    	for i := 0; i < len(name); i++ {
    		h = (h << 4) + uint32(name[i])
    		if g := h & 0xf0000000; g != 0 {
    			h ^= g >> 24
    		}
    		h &= 0x0fffffff
    	}
    	return h
    }
    
    func elfWriteDynEntSym(ctxt *Link, s *loader.SymbolBuilder, tag elf.DynTag, t loader.Sym) {
    	Elfwritedynentsymplus(ctxt, s, tag, t, 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <_comment>MicroStation v7 drawing</_comment>
        <_comment>Sometimes first byte is C8, sometimes it is 08.</_comment>
        <magic priority="50">
          <match value="0x0809FE02" type="string" offset="0" mask="0x0FFFFFFF" />
        </magic>
        <sub-class-of type="image/vnd.dgn"/>
      </mime-type>
      <mime-type type="image/vnd.dgn;version=8">
        <_comment>MicroStation v8 drawing; requires ole2 detector</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top