HomeSort by relevance Sort by last modified time
    Searched refs:cse (Results 1 - 25 of 54) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
CertStoreHelper.java 100 static boolean isCausedByNetworkIssue(String type, CertStoreException cse) {
106 return csh.isCausedByNetworkIssue(cse);
111 Throwable t = cse.getCause();
Builder.java 465 } catch (CertStoreException cse) {
470 "exception retrieving certs: " + cse);
471 cse.printStackTrace();
PKIX.java 282 CertStoreTypeException(String type, CertStoreException cse) {
283 super(cse.getMessage(), cse.getCause());
DistributionPointFetcher.java 194 } catch (CertStoreException cse) {
195 savedCSE = cse;
279 } catch (CertStoreException cse) {
282 "CRLs: " + cse);
283 cse.printStackTrace();
285 savedCSE = new PKIX.CertStoreTypeException(store.getType(),cse);
    [all...]
URICertStore.java 373 } catch (CertStoreException cse) {
374 throw new PKIX.CertStoreTypeException("LDAP", cse);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17918.go 7 // Issue 17918: slice out-of-bounds in ssa/cse
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17918.go 7 // Issue 17918: slice out-of-bounds in ssa/cse
  /external/mesa3d/src/compiler/spirv/
vtn_cfg.c 206 vtn_order_case(struct vtn_switch *swtch, struct vtn_case *cse)
208 if (cse->visited)
211 cse->visited = true;
213 list_del(&cse->link);
215 if (cse->fallthrough) {
216 vtn_order_case(swtch, cse->fallthrough);
225 list_addtail(&cse->link, &cse->fallthrough->link);
227 list_add(&cse->link, &swtch->cases);
425 list_for_each_entry(struct vtn_case, cse, &swtch->cases, link)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
cse_test.go 47 cse(fun.f)
64 t.Errorf("cse removed all of r1,r2,r3")
72 t.Errorf("cse removed all of r4,r5")
76 t.Errorf("cse removed %s, but shouldn't have", k)
82 t.Errorf("%d values missed during cse", s1Cnt+s2Cnt)
86 // TestZCSE tests the zero arg cse.
passbm_test.go 20 func BenchmarkCSEPass(b *testing.B) { benchFnPass(b, cse, blockCount, genFunction) }
21 func BenchmarkCSEPassBlock(b *testing.B) { benchFnBlock(b, cse, genFunction) }
26 cse(f)
compile.go 338 {name: "zero arg cse", fn: zcse, required: true}, // required to merge OpSB values
340 {name: "generic cse", fn: cse},
357 {name: "lowered cse", fn: cse},
391 {"generic cse", "prove"},
396 {"generic cse", "dse"},
397 // cse substantially improves nilcheckelim efficacy
398 {"generic cse", "nilcheckelim"},
409 {"generic cse", "tighten"}
    [all...]
deadstore_test.go 71 // decided by the CSE pass).
89 cse(fun.f)
118 cse(fun.f)
zcse.go 8 // function for values with zero arguments to allow the more expensive cse
cse.go 12 // cse does common-subexpression elimination on the Function.
15 func cse(f *Func) { func
40 continue // memory values can never cse
62 fmt.Printf("CSE.large partition (%d): ", len(e))
73 fmt.Printf("CSE.partition #%d:", pNum)
205 // v.Args[0] is tuple generator, CSE'd into a different block as t, v is left behind
244 f.LogStat("CSE REWRITES", rewrites)
262 // - NOT first two arg's aux; that can break CSE.
312 // We will never be able to CSE two values
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
cse_test.go 47 cse(fun.f)
64 t.Errorf("cse removed all of r1,r2,r3")
72 t.Errorf("cse removed all of r4,r5")
76 t.Errorf("cse removed %s, but shouldn't have", k)
82 t.Errorf("%d values missed during cse", s1Cnt+s2Cnt)
86 // TestZCSE tests the zero arg cse.
passbm_test.go 20 func BenchmarkCSEPass(b *testing.B) { benchFnPass(b, cse, blockCount, genFunction) }
21 func BenchmarkCSEPassBlock(b *testing.B) { benchFnBlock(b, cse, genFunction) }
26 cse(f)
compile.go 338 {name: "zero arg cse", fn: zcse, required: true}, // required to merge OpSB values
340 {name: "generic cse", fn: cse},
357 {name: "lowered cse", fn: cse},
391 {"generic cse", "prove"},
396 {"generic cse", "dse"},
397 // cse substantially improves nilcheckelim efficacy
398 {"generic cse", "nilcheckelim"},
409 {"generic cse", "tighten"}
    [all...]
deadstore_test.go 71 // decided by the CSE pass).
89 cse(fun.f)
118 cse(fun.f)
zcse.go 8 // function for values with zero arguments to allow the more expensive cse
cse.go 12 // cse does common-subexpression elimination on the Function.
15 func cse(f *Func) { func
40 continue // memory values can never cse
62 fmt.Printf("CSE.large partition (%d): ", len(e))
73 fmt.Printf("CSE.partition #%d:", pNum)
205 // v.Args[0] is tuple generator, CSE'd into a different block as t, v is left behind
244 f.LogStat("CSE REWRITES", rewrites)
262 // - NOT first two arg's aux; that can break CSE.
312 // We will never be able to CSE two values
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
fp.s 5 ! -ffunction-cse -freg-struct-return -fdelayed-branch -fcommon -fgnu-linker
  /external/r8/src/test/examples/cse/
CommonSubexpressionElimination.java 8 package cse; package
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/
ImsPhoneCallTrackerTest.java 374 } catch (CallStateException cse) {
375 cse.printStackTrace();
376 Assert.fail("unexpected exception thrown" + cse.getMessage());
413 } catch (CallStateException cse) {
414 cse.printStackTrace();
415 Assert.fail("unexpected exception thrown" + cse.getMessage());
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhone.java 408 } catch (CallStateException cse) {
409 if (CS_FALLBACK.equals(cse.getMessage())) {
410 throw cse;
412 Rlog.w(LOG_TAG, "Could not execute USSD " + cse);
659 } catch (CallStateException cse) {
660 if (CS_FALLBACK.equals(cse.getMessage())) {
665 throw cse;
    [all...]
  /build/soong/cc/config/
arm64_device.go 52 "-frerun-cse-after-loop",

Completed in 756 milliseconds

1 2 3