Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for manipulation (0.24 sec)

  1. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FNMSUBD	F1, F2, F3, F4				// 4b82201a
    	FNMADDD	F1, F2, F3, F4				// 4f82201a
    
    	// 12.6: Double-Precision Floating-Point Classify Instruction
    	FCLASSD	F0, X5					// d31200e2
    
    	// RISC-V Bit-Manipulation ISA-extensions (1.0)
    	// 1.1: Address Generation Instructions (Zba)
    	ADDUW		X10, X11, X12			// 3b86a508
    	ADDUW		X10, X11			// bb85a508
    	SH1ADD		X11, X12, X13			// b326b620
    	SH1ADD		X11, X12			// 3326b620
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </pre>
    
    <p>
    If the map <code>m</code> is <code>nil</code> or the element <code>m[k]</code>
    does not exist, <code>delete</code> is a no-op.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/bytes/bytes.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bytes implements functions for the manipulation of byte slices.
    // It is analogous to the facilities of the [strings] package.
    package bytes
    
    import (
    	"internal/bytealg"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Equal reports whether a and b
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  4. doc/go_spec.html

    The multi-valued <a href="#Receive_operator">receive operation</a>
    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top