Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for cgoOff (0.12 sec)

  1. src/runtime/proc.go

    		// about any other code interrupting us.
    		if mp.cgoCallersUse.Load() == 0 && mp.cgoCallers != nil && mp.cgoCallers[0] != 0 {
    			for cgoOff < len(mp.cgoCallers) && mp.cgoCallers[cgoOff] != 0 {
    				cgoOff++
    			}
    			n += copy(stk[:], mp.cgoCallers[:cgoOff])
    			mp.cgoCallers[0] = 0
    		}
    
    		// Collect Go stack that leads to the cgo call.
    		u.initAt(mp.curg.syscallpc, mp.curg.syscallsp, 0, mp.curg, unwindSilentErrors)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/gccgo_link_c.txt

    ! stderr 'gccgo.*-lalib.*-lalib' # make sure -lalib is only passed once
    
    -- go.mod --
    module m
    -- cgoref.go --
    package main
    // #cgo LDFLAGS: -L alibpath -lalib
    // void f(void) {}
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:38:51 UTC 2023
    - 617 bytes
    - Viewed (0)
  3. src/crypto/x509/pkcs1.go

    	for i, values := range key.Precomputed.CRTValues {
    		priv.AdditionalPrimes[i].Prime = key.Primes[2+i]
    		priv.AdditionalPrimes[i].Exp = values.Exp
    		priv.AdditionalPrimes[i].Coeff = values.Coeff
    	}
    
    	b, _ := asn1.Marshal(priv)
    	return b
    }
    
    // ParsePKCS1PublicKey parses an [RSA] public key in PKCS #1, ASN.1 DER form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/debug/pe/string.go

    	i := bytes.IndexByte(b, 0)
    	if i == -1 {
    		i = len(b)
    	}
    	return string(b[:i])
    }
    
    // StringTable is a COFF string table.
    type StringTable []byte
    
    func readStringTable(fh *FileHeader, r io.ReadSeeker) (StringTable, error) {
    	// COFF string table is located right after COFF symbol table.
    	if fh.PointerToSymbolTable <= 0 {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/link/testdata/pe-llvm/main.go

    // where this windres calls into llvm-rc and llvm-cvtres. The source file,
    // a.rc, simply contains a reference to its own bytes:
    //
    //    resname RCDATA a.rc
    //
    // Object dumping the resultant rsrc.syso, we can see the split sections and
    // the @feat.00 SEH symbol:
    //
    //     rsrc.syso:      file format coff-x86-64
    //
    //     architecture: x86_64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/debug/pe/section.go

    // license that can be found in the LICENSE file.
    
    package pe
    
    import (
    	"encoding/binary"
    	"fmt"
    	"internal/saferio"
    	"io"
    	"strconv"
    )
    
    // SectionHeader32 represents real PE COFF section header.
    type SectionHeader32 struct {
    	Name                 [8]uint8
    	VirtualSize          uint32
    	VirtualAddress       uint32
    	SizeOfRawData        uint32
    	PointerToRawData     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/link/testdata/pe-binutils/main.go

    // license that can be found in the LICENSE file.
    
    // Test that a PE rsrc section is handled correctly (issue 39658).
    //
    // rsrc.syso is created using binutils with:
    //	{x86_64,i686}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where a.rc is a text file with the following content:
    //
    // resname RCDATA {
    //   "Hello Gophers!\0",
    //   "This is a test.\0",
    // }
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 515 bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pe.go

    	characteristics      uint32
    }
    
    // checkOffset verifies COFF section sect offset in the file.
    func (sect *peSection) checkOffset(off int64) {
    	if off != int64(sect.pointerToRawData) {
    		Errorf(nil, "%s.PointerToRawData = %#x, want %#x", sect.name, uint64(int64(sect.pointerToRawData)), uint64(off))
    		errorexit()
    	}
    }
    
    // checkSegment verifies COFF section sect matches address
    // and file offset provided in segment seg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  9. licenses/github.com/cpuguy83/go-md2man/v2/LICENSE.md

    The MIT License (MIT)
    
    Copyright (c) 2014 Brian Goff
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 23 04:14:15 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. LICENSES/vendor/github.com/cpuguy83/go-md2man/v2/LICENSE

    = vendor/github.com/cpuguy83/go-md2man/v2 licensed under: =
    
    The MIT License (MIT)
    
    Copyright (c) 2014 Brian Goff
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 20:22:14 UTC 2020
    - 1.2K bytes
    - Viewed (0)
Back to top