Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 166 (0.56 sec)

  1. src/runtime/cgo/abi_ppc64x.h

    	MOVD	$(offset+16*3), rtmp  \
    	STVX	V23, (rtmp)(R1)       \
    	MOVD	$(offset+16*4), rtmp  \
    	STVX	V24, (rtmp)(R1)       \
    	MOVD	$(offset+16*5), rtmp  \
    	STVX	V25, (rtmp)(R1)       \
    	MOVD	$(offset+16*6), rtmp  \
    	STVX	V26, (rtmp)(R1)       \
    	MOVD	$(offset+16*7), rtmp  \
    	STVX	V27, (rtmp)(R1)       \
    	MOVD	$(offset+16*8), rtmp  \
    	STVX	V28, (rtmp)(R1)       \
    	MOVD	$(offset+16*9), rtmp  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/math/cmplx/sqrt.go

    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10     25000       3.2e-17     9.6e-18
    //    IEEE      -10,+10   1,000,000     2.9e-16     6.1e-17
    
    // Sqrt returns the square root of x.
    // The result r is chosen so that real(r) ≥ 0 and imag(r) has the same sign as imag(x).
    func Sqrt(x complex128) complex128 {
    	if imag(x) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 3K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_linux_riscv64.go

    	SYS_SETHOSTNAME            = 161
    	SYS_SETDOMAINNAME          = 162
    	SYS_GETRLIMIT              = 163
    	SYS_SETRLIMIT              = 164
    	SYS_GETRUSAGE              = 165
    	SYS_UMASK                  = 166
    	SYS_PRCTL                  = 167
    	SYS_GETCPU                 = 168
    	SYS_GETTIMEOFDAY           = 169
    	SYS_SETTIMEOFDAY           = 170
    	SYS_ADJTIMEX               = 171
    	SYS_GETPID                 = 172
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 23 11:00:41 UTC 2019
    - 8.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_linux_arm64.go

    	SYS_SETHOSTNAME            = 161
    	SYS_SETDOMAINNAME          = 162
    	SYS_GETRLIMIT              = 163
    	SYS_SETRLIMIT              = 164
    	SYS_GETRUSAGE              = 165
    	SYS_UMASK                  = 166
    	SYS_PRCTL                  = 167
    	SYS_GETCPU                 = 168
    	SYS_GETTIMEOFDAY           = 169
    	SYS_SETTIMEOFDAY           = 170
    	SYS_ADJTIMEX               = 171
    	SYS_GETPID                 = 172
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LongAdder.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/LongAdder.java?revision=1.17
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.IOException;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/LongAdder.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/LongAdder.java?revision=1.17
     */
    
    package com.google.common.hash;
    
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/LongAdder.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/LongAdder.java?revision=1.17
     */
    
    package com.google.common.hash;
    
    import java.io.IOException;
    import java.io.ObjectInputStream;
    import java.io.ObjectOutputStream;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

    /*
     * Written by Doug Lea and Martin Buchholz with assistance from
     * members of JCP JSR-166 Expert Group and released to the public
     * domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/test/tck-jsr166e/AtomicDoubleTest.java?revision=1.8
     * (Modified to adapt to guava coding conventions)
     */
    
    package com.google.common.util.concurrent;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LongAdder.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/LongAdder.java?revision=1.17
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.IOException;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.golden_summary

     IteratorGetNext 1
     IteratorV2 1
     Less 9
     LogicalAnd 3
     LoopCond 8
     Max 4
     Maximum 44
     Merge 145
     Minimum 43
     Mul 8
     NextIteration 136
     RandomUniform 14
     Range 9
     RefSwitch 166
     Reshape 2
     ScatterAdd 4
     Shape 6
     ShapeN 10
     Size 2
     Snapshot 1
     StackPopV2 314
     StackPushV2 314
     StackV2 314
     StridedSlice 12
     Sub 5
     Sum 2
     Switch 247
     TensorArrayGatherV3 8
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top