Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 512 for tmp_ (0.04 sec)

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

    #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; \
    	VMULOUW  y, one, TMP1; \
    	VMULEUW  x1, x2, out_low; \
    	VMULOUW  x1, x2, out_hi; \
    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. pkg/config/schema/codegen/templates/types.go.tmpl

    John Howard <******@****.***> 1713371920 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/templates/clients.go.tmpl

    罗泽轩 <******@****.***> 1715176671 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    		"zeroArgs":    zeroArgs,
    	}
    	for _, test := range execTests {
    		var tmpl *Template
    		var err error
    		if template == nil {
    			tmpl, err = New(test.name).Funcs(funcs).Parse(test.input)
    		} else {
    			tmpl, err = template.Clone()
    			if err != nil {
    				t.Errorf("%s: clone error: %s", test.name, err)
    				continue
    			}
    			tmpl, err = tmpl.New(test.name).Funcs(funcs).Parse(test.input)
    		}
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/crypto/aes/asm_ppc64x.s

    loop192:
    	VPERM	IN1, IN1, MASK, KEY // vperm 3,2,2,5
    	VSLDOI	$12, ZERO, IN0, TMP // vsldoi 6,0,1,12
    	VCIPHERLAST	KEY, RCON, KEY      // vcipherlast 3,3,4
    
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    	VSLDOI	$12, ZERO, TMP, TMP // vsldoi 6,0,6,12
    	VXOR	IN0, TMP, IN0       // vxor 1,1,6
    
    	VSLDOI	$8, ZERO, IN1, STAGE  // vsldoi 7,0,2,8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/requestauthn/timeout.yaml.tmpl

    John Howard <******@****.***> 1712964271 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 23:24:31 UTC 2024
    - 370 bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/templates/collections.go.tmpl

    John Howard <******@****.***> 1714056257 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/config/schema/codegen/templates/crdclient.go.tmpl

    罗泽轩 <******@****.***> 1715176671 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/go/scriptreadme_test.go

    	}
    	lang, _, ok = strings.Cut(lang, "\n\nvar ")
    	if !ok {
    		t.Fatalf("%q did not include vars after Script Language section", cmd)
    	}
    	args.Language = lang
    
    	tmpl := template.Must(template.New("README").Parse(readmeTmpl[1:]))
    	buf := new(bytes.Buffer)
    	if err := tmpl.Execute(buf, args); err != nil {
    		t.Fatal(err)
    	}
    
    	const readmePath = "testdata/script/README"
    	old, err := os.ReadFile(readmePath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    			config.New(t).
    				Source(config.File("testdata/authz/mtls.yaml.tmpl")).
    				Source(config.File("testdata/authz/deny-global.yaml.tmpl").WithParams(param.Params{
    					param.Namespace.String(): istio.ClaimSystemNamespaceOrFail(t, t),
    				})).
    				Source(config.File("testdata/authz/deny-principal.yaml.tmpl").WithParams(
    					param.Params{
    						"Denied": denied,
    					})).
    				BuildAll(nil, to).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top