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

1 2 3 4 5

  /external/valgrind/exp-dhat/
dh_main.c 221 /* 'bk' is being introduced (has just been allocated). Find the
225 static void intro_Block ( Block* bk )
227 tl_assert(bk);
228 tl_assert(bk->ap);
234 &keyW, &valW, (UWord)bk->ap );
237 tl_assert(keyW == (UWord)bk->ap);
241 api->ap = bk->ap;
243 (UWord)bk->ap, (UWord)api );
252 tl_assert(api->ap == bk->ap);
260 api->cur_bytes_live += bk->req_szB
477 Block* bk = VG_(malloc)("dh.new_block.1", sizeof(Block)); local
507 Block* bk = find_Block_containing( (Addr)p ); local
546 Block* bk = find_Block_containing( (Addr)p_old ); local
674 Block* bk = find_Block_containing( (Addr)p ); local
703 Block* bk = find_Block_containing(addr); local
714 Block* bk = find_Block_containing(addr); local
1287 Block* bk = (Block*)keyW; local
    [all...]
  /external/libunwind/scripts/
make-L-files 16 bk edit $lname >/dev/null 2>&1
  /external/python/cpython2/Demo/turtle/
tdemo_I_dontlike_tiltdemo.py 23 pu(); bk(24*18/6.283); rt(90); pd()
tdemo_two_canvases.py 47 t.bk(50)
tdemo_clock.py 81 writer.bk(85)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBIMonkeyTest.java 856 int bk = fBI.following(i); local
913 int bk = fBI.preceding(i); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
rbbimonkeytest.cpp 690 for (int32_t bk=fBI->first(); bk != BreakIterator::DONE; bk=fBI->next()) {
691 if (bk <= previousBreak) {
692 MONKEY_ERROR("Break Iterator Stall", bk);
695 if (bk < 0 || bk > fTestData->fString.length()) {
696 MONKEY_ERROR("Boundary out of bounds", bk);
699 fTestData->fActualBreaks.setCharAt(bk, 1);
712 int32_t bk = fBI->following(i) local
762 int32_t bk = fBI->preceding(i); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBIMonkeyTest.java 853 int bk = fBI.following(i); local
910 int bk = fBI.preceding(i); local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
fft.c 281 REAL s1, s2, s3, sd, bb, bj, bk, bjm, bjp, bkm, bkp; local
442 bk = Im [k2];
444 Im [k2] = Im [kk] - bk;
446 Im [kk] += bk;
461 bk = Im [kk] - Im [k2];
464 Re [k2] = c1 * ak - s1 * bk;
465 Im [k2] = s1 * ak + c1 * bk;
573 bk = Im [kk];
577 Im [kk] = bk + bj;
579 bk -= 0.5 * bj
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 65 double bk = std::numeric_limits<double>::quiet_NaN(); local
87 bk = b[k];
91 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
117 double bk = std::numeric_limits<double>::quiet_NaN();
139 bk = b[k];
143 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
169 double bk = std::numeric_limits<double>::quiet_NaN();
191 bk = b[k];
195 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
221 double bk = std::numeric_limits<double>::quiet_NaN()
    [all...]
eval_param.pass.cpp 65 double bk = std::numeric_limits<double>::quiet_NaN(); local
87 bk = b[k];
91 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
eval.pass.cpp 65 double bk = std::numeric_limits<double>::quiet_NaN(); local
87 bk = b[k];
91 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
117 double bk = std::numeric_limits<double>::quiet_NaN();
139 bk = b[k];
143 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
169 double bk = std::numeric_limits<double>::quiet_NaN();
191 bk = b[k];
195 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
221 double bk = std::numeric_limits<double>::quiet_NaN()
    [all...]
eval_param.pass.cpp 65 double bk = std::numeric_limits<double>::quiet_NaN(); local
87 bk = b[k];
91 assert(std::abs(f(u[i], a, m, bk, c) - double(i)/N) < .001);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorContractionThreadPool.h 156 // - kernel block sizes (bm, bn, bk)
182 Index bm, bn, bk; local
189 bk = blocking.kc();
196 bk = blocking.kc();
200 // Note: we use bk instead of k here because we are interested in amount of
204 contractionCost(m, n, bm, bn, bk, shard_by_col, false);
233 bk = blocking.kc();
240 bk = blocking.kc();
246 Index nk = divup(k, bk);
257 gm = coarsenM(m, n, bm, bn, bk, gn, num_threads, shard_by_col)
618 Index bk(Index k) const { return k + 1 < nk_ ? bk_ : k_ + bk_ - bk_ * nk_; } function in class:Eigen::TensorEvaluator::Context
    [all...]
  /external/syslinux/memdisk/
inflate.c 211 STATIC unsigned bk; /* bits in bit buffer */ variable
508 k = bk;
586 bk = k;
604 k = bk;
634 bk = k;
715 k = bk;
807 bk = k;
866 k = bk;
880 bk = k;
906 bk = 0
    [all...]
  /external/clang/test/CodeGenCXX/
dynamic-cast-hint.cpp 51 volatile K *bk = dynamic_cast<K *>(b); local
  /external/python/cpython3/Lib/turtledemo/
two_canvases.py 47 t.bk(50)
clock.py 81 writer.bk(85)
  /external/curl/lib/
mk-ca-bundle.pl 540 my $bk = 1;
541 while (-e "$crt.~${bk}~") {
542 $bk++;
544 rename $crt, "$crt.~${bk}~" or die "Failed to create backup $crt.~$bk}~: $!\n";
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/dram/
dram.c 34 ch->bk = SYS_REG_DEC_BK(os_reg2_val, i);
dram.h 123 unsigned char bk; member in struct:rk3399_sdram_channel
  /external/mesa3d/docs/specs/OLD/
MESA_trace.spec 11 Bernd Kreimeier, Loki Entertainment, bk 'at' lokigames.com
  /external/javasqlite/src/main/native/
sqlite_jni.c 783 hbk *bk; local
854 while ((bk = h->backups)) {
855 h->backups = bk->next;
856 bk->next = 0;
857 bk->h = 0;
858 if (bk->bkup) {
859 sqlite3_backup_finish(bk->bkup);
861 bk->bkup = 0;
4641 hbk *bk; local
4720 hbk *bk = gethbk(env, obj); local
4761 hbk *bk = gethbk(env, obj); local
4795 hbk *bk = gethbk(env, obj); local
4813 hbk *bk = gethbk(env, obj); local
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
diff_state.py 151 bk = b.keys()
153 bk.sort()
154 if ak != bk and not self.ignore_added:
  /external/dlmalloc/
malloc.c 2188 struct malloc_chunk* bk; member in struct:malloc_chunk
2398 struct malloc_tree_chunk* bk; member in struct:malloc_tree_chunk
    [all...]

Completed in 3019 milliseconds

1 2 3 4 5