Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for fmrgow (0.18 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    	VADDUWM V12, V26, V12
    
    	VMRGEW V0, V1, V27
    	VMRGEW V2, V3, V28
    
    	VMRGOW V0, V1, V0
    	VMRGOW V2, V3, V2
    
    	VMRGEW V4, V5, V29
    	VMRGEW V6, V7, V30
    
    	XXPERMDI VS32, VS34, $0, VS33
    	XXPERMDI VS32, VS34, $3, VS35
    	XXPERMDI VS59, VS60, $0, VS32
    	XXPERMDI VS59, VS60, $3, VS34
    
    	VMRGOW V4, V5, V4
    	VMRGOW V6, V7, V6
    
    	VMRGEW V8, V9, V27
    	VMRGEW V10, V11, V28
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/anames.go

    	"VSPLTISB",
    	"VSPLTISH",
    	"VSPLTISW",
    	"VCIPH",
    	"VCIPHER",
    	"VCIPHERLAST",
    	"VNCIPH",
    	"VNCIPHER",
    	"VNCIPHERLAST",
    	"VSBOX",
    	"VSHASIGMA",
    	"VSHASIGMAW",
    	"VSHASIGMAD",
    	"VMRGEW",
    	"VMRGOW",
    	"VCLZLSBB",
    	"VCTZLSBB",
    	"LXV",
    	"LXVL",
    	"LXVLL",
    	"LXVD2X",
    	"LXVW4X",
    	"LXVH8X",
    	"LXVB16X",
    	"LXVX",
    	"LXVDSX",
    	"STXV",
    	"STXVL",
    	"STXVLL",
    	"STXVD2X",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_ppc64le.s

    //
    //
    // Vector multiply word
    //
    //	VMLF  x0, x1, out_low
    //	VMLHF x0, x1, out_hi
    #define VMULT(x1, x2, out_low, out_hi) \
    	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; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    		log.Debugf("failed to create delta upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to delta upstream XDS server: %s", p.istiodAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/runtime/pinner.go

    // panic function is a variable, that can be overwritten by a test.
    var pinnerLeakPanic = func() {
    	panic(errorString("runtime.Pinner: found leaking pinned pointer; forgot to call Unpin()?"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/a.out.go

    	AVSPLTW
    	AVSPLTISB
    	AVSPLTISH
    	AVSPLTISW
    	AVCIPH
    	AVCIPHER
    	AVCIPHERLAST
    	AVNCIPH
    	AVNCIPHER
    	AVNCIPHERLAST
    	AVSBOX
    	AVSHASIGMA
    	AVSHASIGMAW
    	AVSHASIGMAD
    	AVMRGEW
    	AVMRGOW
    	AVCLZLSBB
    	AVCTZLSBB
    
    	/* VSX */
    	ALXV
    	ALXVL
    	ALXVLL
    	ALXVD2X
    	ALXVW4X
    	ALXVH8X
    	ALXVB16X
    	ALXVX
    	ALXVDSX
    	ASTXV
    	ASTXVL
    	ASTXVLL
    	ASTXVD2X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/database/sql/fakedb_test.go

    					}
    				}
    				if fmt.Sprintf("%v", tcol) != fmt.Sprintf("%v", argValue) {
    					continue rows
    				}
    			}
    			mrow := &row{cols: make([]any, len(s.colName))}
    			for seli, name := range s.colName {
    				mrow.cols[seli] = trow.cols[colIdx[name]]
    			}
    			mrows = append(mrows, mrow)
    		}
    
    		var colType []string
    		for _, column := range s.colName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			opset(ASTVEWX, r0)
    			opset(ASTVX, r0)
    			opset(ASTVXL, r0)
    
    		case AVAND: /* vand, vandc, vnand */
    			opset(AVAND, r0)
    			opset(AVANDC, r0)
    			opset(AVNAND, r0)
    
    		case AVMRGOW: /* vmrgew, vmrgow */
    			opset(AVMRGEW, r0)
    
    		case AVOR: /* vor, vorc, vxor, vnor, veqv */
    			opset(AVOR, r0)
    			opset(AVORC, r0)
    			opset(AVXOR, r0)
    			opset(AVNOR, r0)
    			opset(AVEQV, r0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    If you don't see the report link in the output in the IDE, make sure to select the top-level node in the structured output panel.
    The report will explain the errors in detail.
    Perhaps, you forgot to add an `@Incubating` annotation or `@since` in the javadoc.
    
    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy.go

    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    		log.Debugf("failed to create upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to upstream XDS server: %s", p.istiodAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top