Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for asia (0.04 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    			opset(AMULVU, r0)
    			opset(AMULHV, r0)
    			opset(AMULHVU, r0)
    			opset(AREMV, r0)
    			opset(AREMVU, r0)
    			opset(ADIVV, r0)
    			opset(ADIVVU, r0)
    
    		case ASLL:
    			opset(ASRL, r0)
    			opset(ASRA, r0)
    			opset(AROTR, r0)
    
    		case ASLLV:
    			opset(ASRAV, r0)
    			opset(ASRLV, r0)
    			opset(AROTRV, r0)
    
    		case ASUB:
    			opset(ASUBU, r0)
    			opset(ANOR, r0)
    
    		case ASUBV:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    	}
    
    	if false { /*debug['O']*/
    		fmt.Printf("oplook %v %v %v %v\n", p.As, DRconv(a1), DRconv(a2), DRconv(a3))
    		fmt.Printf("\t\t%d %d\n", p.From.Type, p.To.Type)
    	}
    
    	if (p.As == ASRL || p.As == ASRA) && p.From.Type == obj.TYPE_CONST && p.From.Offset == 0 {
    		// Right shifts are weird - a shift that looks like "shift by constant 0" actually
    		// means "shift by constant 32". Use left shift in this situation instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	resourceId    uint32
    	listenerId    uint32
    	local         [28]byte // union of sockaddr4 and sockaddr6
    	remote        [28]byte // union of sockaddr4 and sockaddr6
    	_             uint16
    	_             uint16
    	asid          uint16
    	_             [2]byte
    	tnLuName      [8]byte
    	tnMonGrp      uint32
    	tnAppl        [8]byte
    	applData      [40]byte
    	nInterface    [16]byte
    	dVipa         [16]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

       * double-width).
       *
       * <p><b>Note:</b> as the reference file evolves, we will modify this matcher to keep it up to
       * date.
       *
       * <p>See also <a href="http://www.unicode.org/reports/tr11/">UAX #11 East Asian Width</a>.
       *
       * @deprecated Many such characters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code SINGLE_WIDTH})
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    func.func @_UnaryOpsComposition(%arg0: tensor<4xf32>) -> tensor<4xf32> {
    
      // CHECK: %[[RESULT0:.*]] = "tf.Asin"(%[[ARG0]])
      // CHECK: %[[RESULT1:.*]] = "tf.Abs"(%[[RESULT0]])
      // CHECK: %[[RESULT2:.*]] = "tf.Log"(%[[RESULT1]])
      // CHECK: return %[[RESULT2]]
    
      %0 = "tf._UnaryOpsComposition"(%arg0) {op_names = ["Asin", "Abs", "Log"]} : (tensor<4xf32>) -> tensor<4xf32>
      func.return %0 : tensor<4xf32>
    }
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

       * double-width).
       *
       * <p><b>Note:</b> as the reference file evolves, we will modify this matcher to keep it up to
       * date.
       *
       * <p>See also <a href="http://www.unicode.org/reports/tr11/">UAX #11 East Asian Width</a>.
       *
       * @deprecated Many such characters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code SINGLE_WIDTH})
       */
      @Deprecated
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          new absl::flat_hash_map<string, std::vector<string>>{
              // Unary
              {"PW",
               {"ComplexAbs", "Angle", "Conj", "Abs", "Acos", "Acosh", "Asin",
                "Atan", "Atanh", "Ceil", "Cos", "Cosh", "Sin", "Exp", "Expm1",
                "Floor", "IsFinite", "IsInf", "IsNan", "Inv", "Reciprocal", "Log",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top