Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for paddi (0.09 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	// Add in the state
    	PADDD ·chacha20Constants<>(SB), A0; PADDD ·chacha20Constants<>(SB), A1; PADDD ·chacha20Constants<>(SB), A2; PADDD ·chacha20Constants<>(SB), A3
    	PADDD state1Store, B0; PADDD state1Store, B1; PADDD state1Store, B2; PADDD state1Store, B3
    	PADDD state2Store, C0; PADDD state2Store, C1; PADDD state2Store, C2; PADDD state2Store, C3
    	PADDD ctr0Store, D0; PADDD ctr1Store, D1; PADDD ctr2Store, D2; PADDD ctr3Store, D3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		}
    
    	case 23: /* and $lcon/$addcon,r1,r2 ==> oris+ori+and/addi+and */
    		if p.To.Reg == REGTMP || p.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		d := c.vregoff(&p.From)
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    
    		// With S16CON operand, generate 2 instructions using ADDI for signed value,
    		// with 32CON operand generate 3 instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		if !(is32Bit(x + y)) {
    			break
    		}
    		v.reset(OpRISCV64MOVDconst)
    		v.AuxInt = int64ToAuxInt(x + y)
    		return true
    	}
    	// match: (ADDI [x] (ADDI [y] z))
    	// cond: is32Bit(x + y)
    	// result: (ADDI [x + y] z)
    	for {
    		x := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpRISCV64ADDI {
    			break
    		}
    		y := auxIntToInt64(v_0.AuxInt)
    		z := v_0.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    		}
    
    		if o.size(c.ctxt, p) == 8 {
    			// NOTE: this case does not use REGTMP. If it ever does,
    			// remove the NOTUSETMP flag in optab.
    			o1 = c.oaddi(p, a, v&0xfff000, rt, r)
    			o2 = c.oaddi(p, a, v&0x000fff, rt, rt)
    			break
    		}
    
    		o1 = c.oaddi(p, a, v, rt, r)
    
    	case 5: /* b s; bl s */
    		o1 = c.opbra(p, p.As)
    
    		if p.To.Sym == nil {
    			o1 |= uint32(c.brdist(p, 0, 26, 2))
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    	Vaddr  uint32 /* Virtual address in memory image. */
    	Paddr  uint32 /* Physical address (not used). */
    	Filesz uint32 /* Size of contents in file. */
    	Memsz  uint32 /* Size of contents in memory. */
    	Flags  uint32 /* Access permission flags. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    hotel.hu
    ingatlan.hu
    jogasz.hu
    konyvelo.hu
    lakas.hu
    media.hu
    news.hu
    reklam.hu
    sex.hu
    shop.hu
    suli.hu
    szex.hu
    tozsde.hu
    utazas.hu
    video.hu
    
    // id : https://pandi.id/en/domain/registration-requirements/
    id
    ac.id
    biz.id
    co.id
    desa.id
    go.id
    mil.id
    my.id
    net.id
    or.id
    ponpes.id
    sch.id
    web.id
    
    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