Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for simm (0.1 sec)

  1. internal/s3select/sql/record.go

    const (
    	// SelectFmtUnknown - unknown format (default value)
    	SelectFmtUnknown SelectObjectFormat = iota
    	// SelectFmtCSV - CSV format
    	SelectFmtCSV
    	// SelectFmtJSON - JSON format
    	SelectFmtJSON
    	// SelectFmtSIMDJSON - SIMD JSON format
    	SelectFmtSIMDJSON
    	// SelectFmtParquet - Parquet format
    	SelectFmtParquet
    )
    
    // WriteCSVOpts - encapsulates options for Select CSV output
    type WriteCSVOpts struct {
    	FieldDelimiter rune
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    		}
    		return fmt.Sprintf("%#x", addr)
    
    	case Imm:
    		if s, base := symname(uint64(a)); s != "" {
    			suffix := ""
    			if uint64(a) != base {
    				suffix = fmt.Sprintf("%+d", uint64(a)-base)
    			}
    			return fmt.Sprintf("$%s%s(SB)", s, suffix)
    		}
    		if inst.Mode == 32 {
    			return fmt.Sprintf("$%#x", uint32(a))
    		}
    		if Imm(int32(a)) == a {
    			return fmt.Sprintf("$%#x", int64(a))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/math/exp_amd64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // The method is based on a paper by Naoki Shibata: "Efficient evaluation
    // methods of elementary functions suitable for SIMD computation", Proc.
    // of International Supercomputing Conference 2010 (ISC'10), pp. 25 -- 32
    // (May 2010). The paper is available at
    // https://link.springer.com/article/10.1007/s00450-010-0108-2
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/a.out.go

    	REG_F15
    	REG_F16
    	REG_F17
    	REG_F18
    	REG_F19
    	REG_F20
    	REG_F21
    	REG_F22
    	REG_F23
    	REG_F24
    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	// SIMD
    	REG_V0
    	REG_V1
    	REG_V2
    	REG_V3
    	REG_V4
    	REG_V5
    	REG_V6
    	REG_V7
    	REG_V8
    	REG_V9
    	REG_V10
    	REG_V11
    	REG_V12
    	REG_V13
    	REG_V14
    	REG_V15
    	REG_V16
    	REG_V17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    // powers of r that we need from the original equation.
    //
    // Notation:
    //
    //   h - accumulator
    //   r - key
    //   m - message
    //
    //   [a, b]       - SIMD register holding two 64-bit values
    //   [a, b, c, d] - SIMD register holding four 32-bit values
    //   xᵢ[n]        - limb n of variable x with bit width i
    //
    // Limbs are expressed in little endian order, so for 26-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    			return ""
    		}
    	case STREXD_EQ:
    		if argIndex == 2 {
    			// second argument in consecutive pair not printed
    			return ""
    		}
    	}
    
    	switch arg := arg.(type) {
    	case Imm:
    		switch inst.Op &^ 15 {
    		case BKPT_EQ:
    			return fmt.Sprintf("%#04x", uint32(arg))
    		case SVC_EQ:
    			return fmt.Sprintf("%#08x", uint32(arg))
    		}
    		return fmt.Sprintf("#%d", int32(arg))
    
    	case ImmAlt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  7. doc/asm.html

    </li>
    
    <li>
    <code>R0.UXTB</code>
    <br>
    <code>R0.UXTB&lt;&lt;imm</code>:
    <code>UXTB</code>: extract an 8-bit value from the low-order bits of <code>R0</code> and zero-extend it to the size of <code>R0</code>.
    <code>R0.UXTB&lt;&lt;imm</code>: left shift the result of <code>R0.UXTB</code> by <code>imm</code> bits.
    The <code>imm</code> value can be 0, 1, 2, 3, or 4.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  8. internal/s3select/simdj/record.go

    	}
    	return nil
    }
    
    // Replace the underlying buffer of json data.
    func (r *Record) Replace(k interface{}) error {
    	v, ok := k.(simdjson.Object)
    	if !ok {
    		return fmt.Errorf("cannot replace internal data in simd json record with type %T", k)
    	}
    	r.object = v
    	return nil
    }
    
    // NewRecord - creates new empty JSON record.
    func NewRecord(f sql.SelectObjectFormat, obj simdjson.Object) *Record {
    	return &Record{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu.go

    	HasSHA2    bool
    	HasSHA512  bool
    	HasCRC32   bool
    	HasATOMICS bool
    	HasCPUID   bool
    	IsNeoverse bool
    	_          CacheLinePad
    }
    
    var MIPS64X struct {
    	_      CacheLinePad
    	HasMSA bool // MIPS SIMD architecture
    	_      CacheLinePad
    }
    
    // For ppc64(le), it is safe to check only for ISA level starting on ISA v3.00,
    // since there are no optional categories. There are some exceptions that also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    						Configs:           istio,
    						KubernetesObjects: kubeo,
    					})
    					sim := simulation.NewSimulation(t, s, s.SetupProxy(tt.proxy))
    					xdstest.ValidateListeners(t, sim.Listeners)
    					xdstest.ValidateRouteConfigurations(t, sim.Routes)
    					r := xdstest.ExtractRouteConfigurations(sim.Routes)
    					vh := r[tt.routeName]
    					exp := tt.expected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top