Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for chki32 (0.14 sec)

  1. tensorflow/cc/saved_model/fingerprinting_utils.cc

                    matches += 1;
                  }
                  break;
                case ::tensorflow::proto_splitter::FieldIndex::MapKey::TypeCase::
                    kI32:
                  if (chunked_key.has_i32() && chunked_key.i32() == key.i32()) {
                    matches += 1;
                  }
                  break;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    		if s.Flags&SHF_COMPRESSED == 0 {
    			s.ReaderAt = s.sr
    			s.Size = s.FileSize
    		} else {
    			// Read the compression header.
    			switch f.Class {
    			case ELFCLASS32:
    				var ch Chdr32
    				chdata := make([]byte, unsafe.Sizeof(ch))
    				if _, err := s.sr.ReadAt(chdata, 0); err != nil {
    					return nil, err
    				}
    				s.compressionType = CompressionType(bo.Uint32(chdata[unsafe.Offsetof(ch.Type):]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    // ELF32 Dynamic structure. The ".dynamic" section contains an array of them.
    type Dyn32 struct {
    	Tag int32  /* Entry type. */
    	Val uint32 /* Integer/Address value. */
    }
    
    // ELF32 Compression header.
    type Chdr32 struct {
    	Type      uint32
    	Size      uint32
    	Addralign uint32
    }
    
    /*
     * Relocation entries.
     */
    
    // ELF32 Relocations that don't need an addend field.
    type Rel32 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"COMPRESS_HIPROC", Const, 6},
    		{"COMPRESS_LOOS", Const, 6},
    		{"COMPRESS_LOPROC", Const, 6},
    		{"COMPRESS_ZLIB", Const, 6},
    		{"COMPRESS_ZSTD", Const, 21},
    		{"Chdr32", Type, 6},
    		{"Chdr32.Addralign", Field, 6},
    		{"Chdr32.Size", Field, 6},
    		{"Chdr32.Type", Field, 6},
    		{"Chdr64", Type, 6},
    		{"Chdr64.Addralign", Field, 6},
    		{"Chdr64.Size", Field, 6},
    		{"Chdr64.Type", Field, 6},
    		{"Class", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    				Type:      uint32(elf.COMPRESS_ZLIB),
    				Size:      uint64(total),
    				Addralign: uint64(ctxt.Arch.Alignment),
    			})
    		case 4:
    			binary.Write(&buf, ctxt.Arch.ByteOrder, elf.Chdr32{
    				Type:      uint32(elf.COMPRESS_ZLIB),
    				Size:      uint32(total),
    				Addralign: uint32(ctxt.Arch.Alignment),
    			})
    		default:
    			log.Fatalf("can't compress header size:%d", ctxt.Arch.PtrSize)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top