Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for V31 (0.15 sec)

  1. src/crypto/sha512/sha512block_arm64.s

    	SHA512ROUND(V2, V3, V1, V4, V0, V27, V31, V19, V12, V18, V15, V16)
    	SHA512ROUND(V4, V2, V0, V1, V3, V28, V24, V12, V13, V19, V16, V17)
    	SHA512ROUND(V1, V4, V3, V0, V2, V29, V25, V13, V14, V12, V17, V18)
    
    	SHA512ROUND(V0, V1, V2, V3, V4, V30, V26, V14, V15, V13, V18, V19)
    	SHA512ROUND(V3, V0, V4, V2, V1, V31, V27, V15, V16, V14, V19, V12)
    	SHA512ROUND(V2, V3, V1, V4, V0, V24, V28, V16, V17, V15, V12, V13)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_ppc64x.s

    	VXOR V30, V29, V15; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V16; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V17; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V18; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V19; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V20; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V21; \
    	VADDUWM V30, V31, V30; \
    	VXOR V30, V29, V22; \
    	VADDUWM V30, V31, V30
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

      return internal::ValueArray31<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11,
          T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22, T23, T24, T25,
          T26, T27, T28, T29, T30, T31>(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10,
          v11, v12, v13, v14, v15, v16, v17, v18, v19, v20, v21, v22, v23, v24,
          v25, v26, v27, v28, v29, v30, v31);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt

    }
    int foo_gpr0() {
            asm volatile("":::"r30","r29","r28");
    }
    int foo_gpr1() {
            asm volatile("":::"fr31", "fr30","fr29","fr28","r30","r29","r28");
    }
    int foo_vr() {
            asm volatile("":::"v31","v30","v29","v28");
    }
    */
    import "C"
    
    import "fmt"
    
    func main() {
    	C.foo_fpr()
    	C.foo_gpr0()
    	C.foo_gpr1()
    	C.foo_vr()
    	fmt.Println("success")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. cmd/config-migrate.go

    		cfg.Compression.MimeTypes = strings.Split(compress.DefaultMimeTypes, config.ValueSeparator)
    	case "30":
    		// V30 -> V31
    		cfg.OpenID = openid.Config{}
    		cfg.Policy.OPA = opa.Args{
    			URL:       &xnet.URL{},
    			AuthToken: "",
    		}
    	case "31":
    		// V31 -> V32
    		cfg.Notify.NSQ = make(map[string]target.NSQArgs)
    		cfg.Notify.NSQ["1"] = target.NSQArgs{}
    	}
    
    	// Move to latest.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256block_arm64.s

    	VLD1.P	64(R2), [V16.S4, V17.S4, V18.S4, V19.S4]
    	VLD1.P	64(R2), [V20.S4, V21.S4, V22.S4, V23.S4]
    	VLD1.P	64(R2), [V24.S4, V25.S4, V26.S4, V27.S4]
    	VLD1	(R2), [V28.S4, V29.S4, V30.S4, V31.S4]     //load 64*4bytes K constant(K0-K63)
    
    blockloop:
    
    	VLD1.P	16(R1), [V4.B16]                            // load 16bytes message
    	VLD1.P	16(R1), [V5.B16]                            // load 16bytes message
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

    public interface ModelProblem extends BuilderProblem {
    
        /**
         * Version
         */
        enum Version {
            // based on ModeBuildingResult.validationLevel
            BASE,
            V20,
            V30,
            V31,
            V40
        }
    
        /**
         * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          T26 v26, T27 v27, T28 v28, T29 v29, T30 v30, T31 v31) : v1_(v1), v2_(v2),
          v3_(v3), v4_(v4), v5_(v5), v6_(v6), v7_(v7), v8_(v8), v9_(v9), v10_(v10),
          v11_(v11), v12_(v12), v13_(v13), v14_(v14), v15_(v15), v16_(v16),
          v17_(v17), v18_(v18), v19_(v19), v20_(v20), v21_(v21), v22_(v22),
          v23_(v23), v24_(v24), v25_(v25), v26_(v26), v27_(v27), v28_(v28),
          v29_(v29), v30_(v30), v31_(v31) {}
    
      template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm_s390x.s

    // p256MulInternal
    // V0-V3,V30,V31 - Not Modified
    // V4-V15 - Volatile
    
    #define CPOOL   R4
    
    // Parameters
    #define X0    V0 // Not modified
    #define X1    V1 // Not modified
    #define Y0    V2 // Not modified
    #define Y1    V3 // Not modified
    #define T0    V4
    #define T1    V5
    #define P0    V30 // Not modified
    #define P1    V31 // Not modified
    
    // Temporaries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // p256MulInternal
    // V0-V3 V30,V31 - Not Modified
    // V4-V15 V27-V29 - Volatile
    
    #define CPOOL   R7
    
    // Parameters
    #define X0    V0 // Not modified
    #define X1    V1 // Not modified
    #define Y0    V2 // Not modified
    #define Y1    V3 // Not modified
    #define T0    V4 // Result
    #define T1    V5 // Result
    #define P0    V30 // Not modified
    #define P1    V31 // Not modified
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top