Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Disasm (0.15 sec)

  1. src/cmd/link/internal/ld/data.go

    	order = append(order, &Segtext)
    	Segtext.Rwx = 05
    	Segtext.Vaddr = va
    	for i, s := range Segtext.Sections {
    		va = uint64(Rnd(int64(va), int64(s.Align)))
    		s.Vaddr = va
    		va += s.Length
    
    		if ctxt.IsWasm() && i == 0 && va < wasmMinDataAddr {
    			va = wasmMinDataAddr
    		}
    	}
    
    	Segtext.Length = va - uint64(*FlagTextAddr)
    
    	if len(Segrodata.Sections) > 0 {
    		// align to page boundary so as not to mix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	// Disable jump padding on 32 bit builds by setting
    	// padJumps to 0.
    	if ctxt.Arch.Family == sys.I386 {
    		return padJumpsCtx(0)
    	}
    
    	// Disable jump padding for hand written assembly code.
    	if ctxt.IsAsm {
    		return padJumpsCtx(0)
    	}
    
    	return padJumpsCtx(32)
    }
    
    // padJump detects whether the instruction being assembled is a standalone or a macro-fused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    suginami.tokyo.jp
    sumida.tokyo.jp
    tachikawa.tokyo.jp
    taito.tokyo.jp
    tama.tokyo.jp
    toshima.tokyo.jp
    chizu.tottori.jp
    hino.tottori.jp
    kawahara.tottori.jp
    koge.tottori.jp
    kotoura.tottori.jp
    misasa.tottori.jp
    nanbu.tottori.jp
    nichinan.tottori.jp
    sakaiminato.tottori.jp
    tottori.tottori.jp
    wakasa.tottori.jp
    yazu.tottori.jp
    yonago.tottori.jp
    asahi.toyama.jp
    fuchu.toyama.jp
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top