Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 859 for strtab (0.19 sec)

  1. src/debug/macho/file.go

    			n.Value = uint64(n32.Value)
    		}
    		if n.Name >= uint32(len(strtab)) {
    			return nil, &FormatError{offset, "invalid name in symbol table", n.Name}
    		}
    		// We add "_" to Go symbols. Strip it here. See issue 33808.
    		name := cstring(strtab[n.Name:])
    		if strings.Contains(name, ".") && name[0] == '_' {
    			name = name[1:]
    		}
    		symtab = append(symtab, Symbol{
    			Name:  name,
    			Type:  n.Type,
    			Sect:  n.Sect,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

     0x0000001b (INIT_ARRAYSZ)               12 (Bytes)
     0x00000004 (HASH)                       0x1a1b34
     0x6ffffef5 (GNU_HASH)                   0x1b8
     0x00000005 (STRTAB)                     0xd438
     0x00000006 (SYMTAB)                     0x3ec8
     0x0000000a (STRSZ)                      23846 (Bytes)
     0x0000000b (SYMENT)                     16 (Bytes)
     0x00000003 (PLTGOT)                     0x1a8000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	for _, sec := range ef.Sections {
    		want := elf.SHT_NULL
    		switch sec.Name {
    		case ".text", ".data":
    			want = elf.SHT_PROGBITS
    		case ".bss":
    			want = elf.SHT_NOBITS
    		case ".symtab":
    			want = elf.SHT_SYMTAB
    		case ".strtab":
    			want = elf.SHT_STRTAB
    		case ".init_array":
    			want = elf.SHT_INIT_ARRAY
    		case ".fini_array":
    			want = elf.SHT_FINI_ARRAY
    		case ".preinit_array":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. src/encoding/json/stream.go

    	return string(d)
    }
    
    // Token returns the next JSON token in the input stream.
    // At the end of the input stream, Token returns nil, [io.EOF].
    //
    // Token guarantees that the delimiters [ ] { } it returns are
    // properly nested and matched: if Token encounters an unexpected
    // delimiter in the input, it will return an error.
    //
    // The input stream consists of basic JSON values—bool, string,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. src/debug/gosym/symtab.go

    // returning an in-memory representation.
    // Starting with Go 1.3, the Go symbol table no longer includes symbol data.
    func NewTable(symtab []byte, pcln *LineTable) (*Table, error) {
    	var n int
    	err := walksymtab(symtab, func(s sym) error {
    		n++
    		return nil
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	var t Table
    	if pcln.isGo12() {
    		t.go12line = pcln
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/symtab.go

    	putelfsym(ctxt, s, elf.STT_FUNC, elfbind)
    	for k, sect := range Segtext.Sections[1:] {
    		n := k + 1
    		if sect.Name != ".text" || (ctxt.IsAIX() && ctxt.IsExternal()) {
    			// On AIX, runtime.text.X are symbols already in the symtab.
    			break
    		}
    		s = ldr.Lookup(fmt.Sprintf("runtime.text.%d", n), 0)
    		if s == 0 {
    			break
    		}
    		if ldr.SymType(s) != sym.STEXT {
    			panic("unexpected type for runtime.text symbol")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  7. cmd/metacache-stream.go

    	"github.com/tinylib/msgp/msgp"
    	"github.com/valyala/bytebufferpool"
    )
    
    // metadata stream format:
    //
    // The stream is s2 compressed.
    // https://github.com/klauspost/compress/tree/master/s2#s2-compression
    // This ensures integrity and reduces the size typically by at least 50%.
    //
    // All stream elements are msgpack encoded.
    //
    // 1 Integer, metacacheStreamVersion of the writer.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/runtime/symtab.go

    }
    
    // moduledata records information about the layout of the executable
    // image. It is written by the linker. Any changes here must be
    // matched changes to the code in cmd/link/internal/ld/symtab.go:symtab.
    // moduledata is stored in statically allocated non-pointer memory;
    // none of the pointers here are visible to the garbage collector.
    type moduledata struct {
    	sys.NotInHeap // Only in static data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Streams.java

      }
    
      /**
       * Returns a {@link Stream} containing the elements of the first stream, followed by the elements
       * of the second stream, and so on.
       *
       * <p>This is equivalent to {@code Stream.of(streams).flatMap(stream -> stream)}, but the returned
       * stream may perform better.
       *
       * @see Stream#concat(Stream, Stream)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/fingerprinting.cc

      {
        // Local scope guarantees coded stream will be trimmed (ensures
        // serialization determinism).
        // Unfortunately the saving process itself isn't deterministic, so the
        // checksum may still change since the saved_model proto may be different.
        StringOutputStream stream(&saved_model_serialized);
        CodedOutputStream output(&stream);
        output.SetSerializationDeterministic(true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 26 00:24:44 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top