HomeSort by relevance Sort by last modified time
    Searched refs:bbs (Results 1 - 9 of 9) sorted by null

  /external/valgrind/main/callgrind/
bb.c 36 bb_hash bbs; variable
42 bbs.size = 8437;
43 bbs.entries = 0;
44 bbs.table = (BB**) CLG_MALLOC("cl.bb.ibh.1",
45 bbs.size * sizeof(BB*));
47 for (i = 0; i < bbs.size; i++) bbs.table[i] = NULL;
52 return &bbs;
55 /* The hash stores BBs according to
73 new_size = 2* bbs.size +3
    [all...]
callgrind_control.in 392 elsif (/executed-bbs: (\d+)/) { $exec_bbs = $1; }
393 elsif (/distinct-bbs: (\d+)/) { $dist_bbs = $1; }
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLEngineTest.java 392 ByteBuffer bbs = ByteBuffer.wrap(new byte[] {1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,31,2,3,1,2,3,1,2,3,1,2,3}); local
395 clientEngine.engine.unwrap(bbs, new ByteBuffer[] { bbd }, 0, 1);
574 ByteBuffer bbs = ByteBuffer.allocate(100); local
576 clientEngine.engine.wrap(new ByteBuffer[] { bbs }, 0, 1, bbd);
755 ByteBuffer bbs = ByteBuffer.allocate(100); local
759 SSLEngineResult unwrap = clientEngine.engine.unwrap(bbs, bbd);
774 ByteBuffer bbs = ByteBuffer.allocate(10); local
780 sse.unwrap(bbs, bbd);
799 ByteBuffer bbs = ByteBuffer.allocate(10); local
815 sse.unwrap(bbs, bbdN)
843 ByteBuffer bbs = ByteBuffer.allocate(10); local
863 ByteBuffer bbs = ByteBuffer.allocate(10); local
885 ByteBuffer bbs = ByteBuffer.allocate(100); local
904 ByteBuffer bbs = ByteBuffer.allocate(10); local
985 ByteBuffer bbs = ByteBuffer.allocate(10); local
1005 ByteBuffer bbs = ByteBuffer.allocate(10); local
1022 ByteBuffer bbs = ByteBuffer.allocate(20); local
1034 ByteBuffer bbs = ByteBuffer.allocate(10); local
1059 ByteBuffer bbs = ByteBuffer.allocate(10); local
1103 ByteBuffer bbs = ByteBuffer.allocate(10); local
1145 ByteBuffer bbs = ByteBuffer.allocate(100); local
    [all...]
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
SSLEngineTest.java 156 ByteBuffer bbs = ByteBuffer.allocate(100); local
160 e.wrap(bbs, bbd);
164 SSLEngineResult res = e.wrap(bbd, bbs);
169 e.wrap(new ByteBuffer[] { bbs }, bbd);
173 res = e.wrap(new ByteBuffer[] { bbd }, bbs);
288 ByteBuffer bbs = ByteBuffer.allocate(100); local
292 e.unwrap(bbs, bbd);
296 SSLEngineResult res = e.unwrap(bbd, bbs);
301 e.unwrap(bbs, new ByteBuffer[] { bbd });
305 res = e.unwrap(bbd, new ByteBuffer[] { bbs });
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 273 ByteBlock[] bbs = new ByteBlock[bytes.size()]; local
310 bbs[count] =
318 result.set(i, bbs[i]);
  /external/valgrind/main/VEX/switchback/
binary_switchback.pl 136 # Run switchback for test, for N bbs
199 # Returns N simulated bbs from output lines
207 if (($n) = ($line =~ /^(\d*) bbs simulated$/)) {
210 print "Error: Didn't find N bbs simultated, from output lines\n";
340 if (get_N_simulated(\@sb_output) < $N) { # Done: No bad bbs
408 print "*** Success! No bad bbs found. ***\n";
  /external/dropbear/libtommath/
tommath.h 151 #define LTM_PRIME_BBS 0x0001 /* BBS style prime */
493 * call with bbs = 1 if you want it to be congruent to 3 mod 4
501 #define mp_prime_random(a, t, size, bbs, cb, dat) mp_prime_random_ex(a, t, ((size) * 8) + 1, (bbs==1)?LTM_PRIME_BBS:0, cb, dat)
bn.tex     [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 198 List<ByteBuffer> bbs = getSamples(startSample, endSample, track, i);
199 final List<ByteBuffer> samples = ByteBufferHelper.mergeAdjacentBuffers(bbs);

Completed in 143 milliseconds