HomeSort by relevance Sort by last modified time
    Searched defs:BP (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/llvm/unittests/Support/
BranchProbabilityTest.cpp 23 typedef BranchProbability BP;
25 EXPECT_EQ(306783378u, BP(1, 7).getNumerator());
26 EXPECT_EQ(1u << 31, BP(1, 7).getDenominator());
27 EXPECT_EQ(0u, BP::getZero().getNumerator());
28 EXPECT_EQ(1u << 31, BP::getZero().getDenominator());
29 EXPECT_EQ(1u << 31, BP::getOne().getNumerator());
30 EXPECT_EQ(1u << 31, BP::getOne().getDenominator());
34 EXPECT_TRUE(BP(1, 7) < BP(2, 7));
35 EXPECT_TRUE(BP(1, 7) < BP(1, 4))
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
BP.java 51 public class BP extends Server {
55 BP(int port, int backlog, boolean secure) throws Exception {
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
BP.java 51 public class BP extends Server {
55 BP(int port, int backlog, boolean secure) throws Exception {
  /prebuilts/go/darwin-x86/src/crypto/sha1/
sha1block_amd64p32.s 24 // To ensure safety for Native Client, avoids use of BP and R15
112 #define BP R13 /* keep diff from sha1block_amd64.s small */
113 ROUND1(AX, BX, CX, DX, BP, 0)
114 ROUND1(BP, AX, BX, CX, DX, 1)
115 ROUND1(DX, BP, AX, BX, CX, 2)
116 ROUND1(CX, DX, BP, AX, BX, 3)
117 ROUND1(BX, CX, DX, BP, AX, 4)
118 ROUND1(AX, BX, CX, DX, BP, 5)
119 ROUND1(BP, AX, BX, CX, DX, 6)
120 ROUND1(DX, BP, AX, BX, CX, 7
    [all...]
  /prebuilts/go/linux-x86/src/crypto/sha1/
sha1block_amd64p32.s 24 // To ensure safety for Native Client, avoids use of BP and R15
112 #define BP R13 /* keep diff from sha1block_amd64.s small */
113 ROUND1(AX, BX, CX, DX, BP, 0)
114 ROUND1(BP, AX, BX, CX, DX, 1)
115 ROUND1(DX, BP, AX, BX, CX, 2)
116 ROUND1(CX, DX, BP, AX, BX, 3)
117 ROUND1(BX, CX, DX, BP, AX, 4)
118 ROUND1(AX, BX, CX, DX, BP, 5)
119 ROUND1(BP, AX, BX, CX, DX, 6)
120 ROUND1(DX, BP, AX, BX, CX, 7
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
PassManager.cpp 197 BasicBlockPass *BP = getContainedPass(Index);
198 BP->dumpPassStructure(Offset + 1);
199 dumpLastUses(BP, Offset+1);
205 BasicBlockPass *BP = static_cast<BasicBlockPass *>(PassVector[N]);
206 return BP;
    [all...]
  /art/test/1911-get-local-var-table/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1912-get-set-local-primitive/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1913-get-set-local-objects/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1914-get-local-instance/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1915-get-set-local-current-thread/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1916-get-set-current-frame/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1917-get-stack-frame/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1923-frame-pop/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1924-frame-pop-toggle/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1925-self-frame-pop/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1926-missed-frame-pop/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1927-exception-event/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1928-exception-event-exception/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1929-exception-catch-exception/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1935-get-set-current-frame-jit/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1939-proxy-frames/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1941-dispose-stress/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/1947-breakpoint-redefine-deopt/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]
  /art/test/993-breakpoints/src/art/
Breakpoint.java 26 public static class BP {
30 public BP(Executable method) {
34 public BP(Executable method, long location) {
41 return (other instanceof BP) &&
42 method.equals(((BP)other).method) &&
43 location == ((BP)other).location;
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) {
77 for (BP b : bs) {
84 setBreakpoints(new BP(method, location))
    [all...]

Completed in 319 milliseconds

1 2 3 4