Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for 0x1f (0.33 sec)

  1. src/cmd/internal/obj/s390x/asmz.go

    		uint8(op),
    		(uint8(b1)<<4)|uint8((d1>>8)&0x0F),
    		uint8(d1),
    		(uint8(b2)<<4)|uint8((d2>>8)&0x0F),
    		uint8(d2))
    }
    
    func zSSF(op, r3, b1, d1, b2, d2 uint32, asm *[]byte) {
    	*asm = append(*asm,
    		uint8(op>>8),
    		(uint8(r3)<<4)|(uint8(op)&0x0F),
    		(uint8(b1)<<4)|uint8((d1>>8)&0x0F),
    		uint8(d1),
    		(uint8(b2)<<4)|uint8((d2>>8)&0x0F),
    		uint8(d2))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  2. cmd/storage-datatypes_gen.go

    	o = append(o, 0xb2, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x6f, 0x75, 0x74)
    	o = msgp.AppendUint64(o, z.TotalErrorsTimeout)
    	// string "TotalWrites"
    	o = append(o, 0xab, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x57, 0x72, 0x69, 0x74, 0x65, 0x73)
    	o = msgp.AppendUint64(o, z.TotalWrites)
    	// string "TotalDeletes"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    }
                    if( addr.getAddress() instanceof NbtAddress ) {
                        int code = ((NbtAddress)addr.getAddress()).getNameType();
                        if( code == 0x1d || code == 0x1b ) {
                            type = TYPE_WORKGROUP;
                            return type;
                        }
                    }
                    type = TYPE_SERVER;
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    // Section flags.
    type SectionFlag uint32
    
    const (
    	SHF_WRITE            SectionFlag = 0x1        /* Section contains writable data. */
    	SHF_ALLOC            SectionFlag = 0x2        /* Section occupies memory. */
    	SHF_EXECINSTR        SectionFlag = 0x4        /* Section contains instructions. */
    	SHF_MERGE            SectionFlag = 0x10       /* Section may be merged. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top