Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Quad (0.14 sec)

  1. src/cmd/internal/obj/riscv/cpu.go

    	// 12.7: Double-Precision Floating-Point Classify Instruction
    	AFCLASSD
    
    	// 13.1 Quad-Precision Load and Store Instructions
    	AFLQ
    	AFSQ
    
    	// 13.2: Quad-Precision Computational Instructions
    	AFADDQ
    	AFSUBQ
    	AFMULQ
    	AFDIVQ
    	AFMINQ
    	AFMAXQ
    	AFSQRTQ
    	AFMADDQ
    	AFMSUBQ
    	AFNMADDQ
    	AFNMSUBQ
    
    	// 13.3 Quad-Precision Convert and Move Instructions
    	AFCVTWQ
    	AFCVTLQ
    	AFCVTSQ
    	AFCVTDQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/net/netip/slow_test.go

    // function does not verify the contents of each field.
    //
    // This function performs two transformations:
    //   - The last 32 bits of an IPv6 address may be represented in
    //     IPv4-style dotted quad form, as in 1:2:3:4:5:6:7.8.9.10. That
    //     address is transformed to its hex equivalent,
    //     e.g. 1:2:3:4:5:6:708:90a.
    //   - An address may contain one "::", which expands into as many
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    			if r == 1 {
    				// This is an illegal encoding (ra != 0 && r == 1) on ISA 3.1.
    				v := uint64(inst.Enc)<<32 | uint64(inst.SuffixEnc)
    				return fmt.Sprintf(".quad 0x%x", v)
    			}
    		}
    		buf.WriteString(str)
    
    	default:
    		// Prefixed load/stores do not print the displacement register when R==1 (they are PCrel).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

        String dottedQuad = ipString.substring(lastColon + 1);
        byte[] quad = textToNumericFormatV4(dottedQuad);
        if (quad == null) {
          return null;
        }
        String penultimate = Integer.toHexString(((quad[0] & 0xff) << 8) | (quad[1] & 0xff));
        String ultimate = Integer.toHexString(((quad[2] & 0xff) << 8) | (quad[3] & 0xff));
        return initialPart + penultimate + ":" + ultimate;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

        String dottedQuad = ipString.substring(lastColon + 1);
        byte[] quad = textToNumericFormatV4(dottedQuad);
        if (quad == null) {
          return null;
        }
        String penultimate = Integer.toHexString(((quad[0] & 0xff) << 8) | (quad[1] & 0xff));
        String ultimate = Integer.toHexString(((quad[2] & 0xff) << 8) | (quad[3] & 0xff));
        return initialPart + penultimate + ":" + ultimate;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX5124FMAPS     bool // Advanced vector extension 512 Fused Multiply Accumulation Packed Single precision
    	HasAVX512VPOPCNTDQ  bool // Advanced vector extension 512 Double and quad word population count instructions
    	HasAVX512VPCLMULQDQ bool // Advanced vector extension 512 Vector carry-less multiply operations
    	HasAVX512VNNI       bool // Advanced vector extension 512 Vector Neural Network Instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/debug/macho/file.go

    	// when Scattered == false && Extern == false, Value is the section number.
    	// when Scattered == true, Value is the value that this reloc refers to.
    	Type      uint8
    	Len       uint8 // 0=byte, 1=word, 2=long, 3=quad
    	Pcrel     bool
    	Extern    bool // valid if Scattered == false
    	Scattered bool
    }
    
    type Section struct {
    	SectionHeader
    	Relocs []Reloc
    
    	// Embed ReaderAt for ReadAt method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    count--;}}}
    active[currentLine.id]=(currentLine.type==='left');}
    return area;}
    static quadToRect(quad){const left=Math.min(quad[0],quad[2],quad[4]);const right=Math.max(quad[0],quad[2],quad[4]);const top=Math.min(quad[1],quad[3],quad[5]);const bottom=Math.max(quad[1],quad[3],quad[5]);return{left,right,top,bottom};}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // mongolian vowel separator
        assertThat(parse("http://h/\u180e").encodedPath).isEqualTo("/%E1%A0%8E")
        // en quad
        assertThat(parse("http://h/\u2000").encodedPath).isEqualTo("/%E2%80%80")
        // em quad
        assertThat(parse("http://h/\u2001").encodedPath).isEqualTo("/%E2%80%81")
        // en space
        assertThat(parse("http://h/\u2002").encodedPath).isEqualTo("/%E2%80%82")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    //   - "::ffff:1.2.3.4" (if [Addr.Is4In6])
    //   - IPv6 with zone ("fe80:db8::1%eth0")
    //
    // Note that unlike package net's IP.String method,
    // IPv4-mapped IPv6 addresses format with a "::ffff:"
    // prefix before the dotted quad.
    func (ip Addr) String() string {
    	switch ip.z {
    	case z0:
    		return "invalid IP"
    	case z4:
    		return ip.string4()
    	default:
    		if ip.Is4In6() {
    			return ip.string4In6()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top