Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for fmrgow (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	XXSPLTIB:       "xxspltib",
    	BCDADDCC:       "bcdadd.",
    	BCDSUBCC:       "bcdsub.",
    	BCTAR:          "bctar",
    	BCTARL:         "bctarl",
    	CLRBHRB:        "clrbhrb",
    	FMRGEW:         "fmrgew",
    	FMRGOW:         "fmrgow",
    	ICBT:           "icbt",
    	LQARX:          "lqarx",
    	LXSIWAX:        "lxsiwax",
    	LXSIWZX:        "lxsiwzx",
    	LXSSPX:         "lxsspx",
    	MFBHRBE:        "mfbhrbe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/types/fmt.go

    // fmtMode represents the kind of printing being done.
    // The default is regular Go syntax (fmtGo).
    // fmtDebug is like fmtGo but for debugging dumps and prints the type kind too.
    // fmtTypeID and fmtTypeIDName are for generating various unique representations
    // of types used in hashes, the linker, and function/method instantiations.
    type fmtMode int
    
    const (
    	fmtGo fmtMode = iota
    	fmtDebug
    	fmtTypeID
    	fmtTypeIDName
    )
    
    // Sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/math/big/prime_test.go

    			t.Errorf("%s(%v, base=2) = false, want true", name, i)
    		}
    		if len(want) > 0 && i == want[0] {
    			want = want[1:]
    		}
    	}
    	if len(want) > 0 {
    		t.Fatalf("forgot to test %v", want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This error indicates that you have a syntax or grammar error in your TOML version catalog file.
    
    This can happen if you use wrong keys, for example:
    
    ```toml
    some-alias = { unknownKey = "foo" }
    ```
    
    or that you forgot about some elements:
    
    ```toml
    # missing the "group"
    some-alias = { name="my-lib", version="1.0" }
    ```
    
    [[unsupported_format_version]]
    == Unsupported TOML file format version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top