Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 399 for difference (0.5 sec)

  1. src/cmd/link/elf_test.go

    			elfpie, err := elf.Open(binpie)
    			if err != nil {
    				t.Fatal(err)
    			}
    			defer elfpie.Close()
    
    			// The difference in size between exe and PIE
    			// should be approximately the difference in
    			// size of the .text section plus the size of
    			// the PIE dynamic data sections plus the
    			// difference in size of the .got and .plt
    			// sections if they exist.
    			// We ignore unallocated sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/div_test.c

    // the division algorithm in build-goboring.sh,
    // to verify that is correct. The real algorithm uses u128
    // but this copy uses u32 for easier testing.
    // s/32/128/g should be the only difference between the two.
    //
    // This is the dumbest possible division algorithm,
    // but any crypto code that depends on the speed of
    // division is equally dumb.
    
    //go:build ignore
    
    #include <stdio.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/outbuf_darwin.go

    func (out *OutBuf) fallocate(size uint64) error {
    	stat, err := out.f.Stat()
    	if err != nil {
    		return err
    	}
    	// F_PEOFPOSMODE allocates from the end of the file, so we want the size difference.
    	// Apparently, it uses the end of the allocation, instead of the logical end of the
    	// file.
    	cursize := uint64(stat.Sys().(*syscall.Stat_t).Blocks * 512) // allocated size
    	if size <= cursize {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 13 15:50:02 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/slice.go

    	// position to discover whether there is a blank before the parenthesis.
    	// We only get here if defining a macro inside a macro.
    	// This imperfect implementation means we cannot tell the difference between
    	//	#define A #define B(x) x
    	// and
    	//	#define A #define B (x) x
    	// The first definition of B has an argument, the second doesn't. Because we let
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 22:49:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/crypto/tls/cache.go

    // to the certificate in the cache is decremented. Once the number of references
    // reaches zero, the entry is evicted from the cache.
    //
    // The main difference between this implementation and CRYPTO_BUFFER_POOL is that
    // CRYPTO_BUFFER_POOL is a more  generic structure which supports blobs of data,
    // rather than specific structures. Since we only care about x509.Certificates,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    	}
    	return nil
    }
    
    // PruneFrom removes all nodes beneath the lowest node matching dropRx, not including itself.
    //
    // Please see the example below to understand this method as well as
    // the difference from Prune method.
    //
    // A sample contains Location of [A,B,C,B,D] where D is the top frame and there's no inline.
    //
    // PruneFrom(A) returns [A,B,C,B,D] because there's no node beneath A.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # requireincompatible are pruned out (because the module that requires
    # it — lazy v0.1.0 — specifies 'go 1.17', and it is not otherwise relevant to
    # the main module).
    
    # 'go mod tidy' should by default diagnose the difference in dependencies as an
    # error, with useful suggestions about how to resolve it.
    
    cp go.mod go.mod.orig
    ! go mod tidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/a.out.go

    	REG_ELEM_END
    )
    
    // Not registers, but flags that can be combined with regular register
    // constants to indicate extended register conversion. When checking,
    // you should subtract obj.RBaseARM64 first. From this difference, bit 11
    // indicates extended register, bits 8-10 select the conversion mode.
    // REG_LSL is the index shift specifier, bit 9 indicates shifted offset register.
    const REG_LSL = obj.RBaseARM64 + 1<<9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/arch/arm.go

    func IsARMFloatCmp(op obj.As) bool {
    	switch op {
    	case arm.ACMPF, arm.ACMPD:
    		return true
    	}
    	return false
    }
    
    // ARMMRCOffset implements the peculiar encoding of the MRC and MCR instructions.
    // The difference between MRC and MCR is represented by a bit high in the word, not
    // in the usual way by the opcode itself. Asm must use AMRC for both instructions, so
    // we return the opcode for MRC so that asm doesn't need to import obj/arm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # requireincompatible are pruned out (because the module that requires
    # it — lazy v0.1.0 — specifies 'go 1.17', and it is not otherwise relevant to
    # the main module).
    
    
    # 'go mod tidy' should by default diagnose the difference in dependencies as an
    # error, with useful suggestions about how to resolve it.
    
    cp go.mod go.mod.orig
    ! go mod tidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top