Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for cstab (0.04 sec)

  1. src/cmd/internal/objfile/macho.go

    	var addrs []uint64
    	for _, s := range f.macho.Symtab.Syms {
    		// Skip stab debug info.
    		if s.Type&stabTypeMask == 0 {
    			addrs = append(addrs, s.Value)
    		}
    	}
    	sort.Sort(uint64s(addrs))
    
    	var syms []Sym
    	for _, s := range f.macho.Symtab.Syms {
    		if s.Type&stabTypeMask != 0 {
    			// Skip stab debug info.
    			continue
    		}
    		sym := Sym{Name: s.Name, Addr: s.Value, Code: '?'}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/bugreport/bugreport.go

    		}
    		clog = "========= Previous log present (appended at the end) =========\n\n" + clog +
    			"\n\n========= Previous log =========\n\n" + pclog
    	}
    	var cstat *processlog.Stats
    	clog, cstat = processlog.Process(config, clog)
    	return clog, cstat, cstat.Importance(), nil
    }
    
    func runAnalyze(config *config.BugReportConfig, params *content.Params, analyzeTimeout time.Duration) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/internal/coverage/decodecounter/decodecounterfile.go

    		return err
    	}
    	if nr != int(cdr.shdr.StrTabLen) {
    		return fmt.Errorf("error: short read on string table")
    	}
    	slr := slicereader.NewReader(b, false /* not readonly */)
    	cdr.stab = stringtab.NewReader(slr)
    	cdr.stab.Read()
    	return nil
    }
    
    func (cdr *CounterDataReader) readArgs() error {
    	b := make([]byte, cdr.shdr.ArgsLen)
    	nr, err := cdr.mr.Read(b)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. internal/mountinfo/mountinfo_linux.go

    package mountinfo
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"syscall"
    )
    
    const (
    	// Number of fields per line in /proc/mounts as per the fstab man page.
    	expectedNumFieldsPerLine = 6
    	// Location of the mount file to use
    	procMountsPath = "/proc/mounts"
    )
    
    // IsLikelyMountPoint determines if a directory is a mountpoint.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/xcoff/xcoff.go

    	Xparmhash uint32 // Offset of parameter type-check string
    	Xsnhash   uint16 // .typchk section number
    	Xsmtyp    uint8  // Symbol alignment and type
    	Xsmclas   uint8  // Storage-mapping class
    	Xstab     uint32 // Reserved
    	Xsnstab   uint16 // Reserved
    }
    
    type AuxCSect64 struct {
    	Xscnlenlo uint32 // Lower 4 bytes of length or symbol table index
    	Xparmhash uint32 // Offset of parameter type-check string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    	textStart      uintptr // base for function entry PC offsets in this module, equal to moduledata.text
    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/symtab.go

    		moduledata.AddUint(ctxt.Arch, 0)
    	}
    
    	// The pcHeader
    	moduledata.AddAddr(ctxt.Arch, pcln.pcheader)
    
    	// The function name slice
    	sliceSym(pcln.funcnametab)
    
    	// The cutab slice
    	sliceSym(pcln.cutab)
    
    	// The filetab slice
    	sliceSym(pcln.filetab)
    
    	// The pctab slice
    	sliceSym(pcln.pctab)
    
    	// The pclntab slice
    	slice(pcln.pclntab, uint64(ldr.SymSize(pcln.pclntab)))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_ppc64le.s

    DATA ·byteswapcons+8(SB)/8,$0x0f0e0d0c0b0a0908
    
    GLOBL ·byteswapcons+0(SB),RODATA,$16
    #endif
    
    TEXT ·vectorCrc32(SB), NOSPLIT|NOFRAME, $0-36
    	MOVWZ	crc+0(FP), R3   // incoming crc
    	MOVWZ	ctab+4(FP), R14   // crc poly id
    	MOVD    p+8(FP), R4
    	MOVD    p_len+16(FP), R5 // p len
    
    	// R3 = incoming crc
    	// R14 = constant table identifier
    	// R5 = address of bytes
    	// R6 = length of bytes
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Cachestat(fd uint, crange *CachestatRange, cstat *Cachestat_t, flags uint) (err error) {
    	_, _, e1 := Syscall6(SYS_CACHESTAT, uintptr(fd), uintptr(unsafe.Pointer(crange)), uintptr(unsafe.Pointer(cstat)), uintptr(flags), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/cea-2018+xml",
    				"application/cellml+xml",
    				"application/cnrp+xml",
    				"application/commonground",
    				"application/conference-info+xml",
    				"application/cpl+xml",
    				"application/csta+xml",
    				"application/cstadata+xml",
    				"application/cu-seeme",
    				"application/cybercash",
    				"application/davmount+xml",
    				"application/dca-rft",
    				"application/dec-dx",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top