Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VMULOUW (0.38 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	VMULEUW x1, x2, TMP1; \
    	VMULOUW x1, x2, TMP2; \
    	VMRGEW TMP1, TMP2, out_hi; \
    	VMRGOW TMP1, TMP2, out_low
    
    //
    // Vector multiply add word
    //
    //	VMALF  x0, x1, y, out_low
    //	VMALHF x0, x1, y, out_hi
    #define VMULT_ADD(x1, x2, y, one, out_low, out_hi) \
    	VMULEUW  y, one, TMP2; \
    	VMULOUW  y, one, TMP1; \
    	VMULEUW  x1, x2, out_low; \
    	VMULOUW  x1, x2, out_hi; \
    	VADDUDM  TMP2, out_low, TMP2; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VMULOUH V1, V2, V3              // 10611048
    	VMULESH V1, V2, V3              // 10611348
    	VMULOSW V1, V2, V3              // 10611188
    	VMULEUW V1, V2, V3              // 10611288
    	VMULOUW V1, V2, V3              // 10611088
    	VMULUWM V1, V2, V3              // 10611089
    	VPMSUMB V1, V2, V3              // 10611408
    	VPMSUMH V1, V2, V3              // 10611448
    	VPMSUMW V1, V2, V3              // 10611488
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top