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

1 2 3 4 5

  /external/jemalloc/android/src/
je_mallinfo.c 39 arena_bin_t* bin = &arenas[i]->bins[j]; local
41 malloc_mutex_lock(&bin->lock);
42 mi.uordblks += bin->stats.allocated;
43 malloc_mutex_unlock(&bin->lock);
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 16 int bin = bins[k + (j*y)]; local
18 double b = double(bin) / double(reps);
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidSerializationTest.java 40 ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray()); local
41 Object o = new ObjectInputStream(bin).readObject();
  /external/guava/guava-tests/test/com/google/common/io/
LimitInputStreamTest.java 30 InputStream bin = new ByteArrayInputStream(big); local
31 InputStream lin = new LimitInputStream(bin, 2);
61 InputStream bin = new ByteArrayInputStream(big); local
62 InputStream lin = new LimitInputStream(bin, 2);
82 InputStream bin = new ByteArrayInputStream(big); local
83 InputStream lin = new LimitInputStream(bin, 2);
100 InputStream bin = new ByteArrayInputStream(big); local
101 InputStream lin = new LimitInputStream(bin, 2);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 156 uint32_t *bin = code - codeSize / 4; local
161 INFO("%08x ", bin[pos]);
304 info->bin.syms =
305 (struct nv50_ir_prog_symbol *)MALLOC(nMax * sizeof(*info->bin.syms));
313 info->bin.syms[n].label = f->getLabel();
314 info->bin.syms[n].offset = f->binPos;
317 info->bin.numSyms = n;
348 info->bin.relocData = emit->getRelocInfo();
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_dft.c 56 int bin,k; local
59 for (bin=0;bin<nfft;++bin) {
66 double phase = -2*M_PI*bin*k/nfft;
82 difr = ansr - out[bin].r;
83 difi = ansi - out[bin].i;
test_unit_mdct.c 56 int bin,k; local
59 for (bin=0;bin<nfft/2;++bin) {
64 double phase = 2*M_PI*(k+.5+.25*nfft)*(bin+.5)/nfft;
71 /*printf ("%f %f\n", ansr, out[bin]);*/
72 difr = ansr - out[bin];
86 int bin,k; local
89 for (bin=0;bin<nfft;++bin)
    [all...]
  /external/libopus/celt/tests/
test_unit_dft.c 56 int bin,k; local
59 for (bin=0;bin<nfft;++bin) {
66 double phase = -2*M_PI*bin*k/nfft;
82 difr = ansr - out[bin].r;
83 difi = ansi - out[bin].i;
test_unit_mdct.c 56 int bin,k; local
59 for (bin=0;bin<nfft/2;++bin) {
64 double phase = 2*M_PI*(k+.5+.25*nfft)*(bin+.5)/nfft;
71 /*printf ("%f %f\n", ansr, out[bin]);*/
72 difr = ansr - out[bin];
86 int bin,k; local
89 for (bin=0;bin<nfft;++bin)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 156 uint32_t *bin = code - codeSize / 4; local
161 INFO("%08x ", bin[pos]);
304 info->bin.syms =
305 (struct nv50_ir_prog_symbol *)MALLOC(nMax * sizeof(*info->bin.syms));
313 info->bin.syms[n].label = f->getLabel();
314 info->bin.syms[n].offset = f->binPos;
317 info->bin.numSyms = n;
348 info->bin.relocData = emit->getRelocInfo();
  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 43 u8 bin[100]; local
53 binlen = printf_decode(bin, sizeof(bin), buf);
55 os_memcmp(bin, test->data, binlen) != 0) {
57 bin, binlen);
61 binlen = printf_decode(bin, sizeof(bin), test->encoded);
63 os_memcmp(bin, test->data, binlen) != 0) {
65 bin, binlen);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
EnergyProbe.java 72 int bin = 2 * (freq * CAPTURE_SIZE / mMaxFrequency / 2); local
73 if (bin < 2) bin = 2;
77 (j < AVERAGE_COUNT) && ((bin + 2 * j) < CAPTURE_SIZE);
79 tmp += (int)mFft[bin + 2 * j] * (int)mFft[bin + 2 * j] +
80 (int)mFft[bin + 2 * j + 1] * (int)mFft[bin + 2 * j + 1];
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
histogram.cpp 34 int bin = clamp(0, static_cast<int>(static_cast<float>(i * numBins) / 255.0f), numBins - 1); local
35 ++pHist[bin];
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 6 def bin(s): function
32 self.assertEqual(bin(struct.pack(">h", 0x1234)), "1234")
33 self.assertEqual(bin(s), "1234")
37 self.assertEqual(bin(struct.pack("<h", 0x1234)), "3412")
38 self.assertEqual(bin(s), "3412")
42 self.assertEqual(bin(struct.pack(">h", 0x1234)), "1234")
43 self.assertEqual(bin(s), "1234")
47 self.assertEqual(bin(struct.pack("<h", 0x1234)), "3412")
48 self.assertEqual(bin(s), "3412")
60 self.assertEqual(bin(struct.pack(">i", 0x12345678)), "12345678"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_byteswap.py 6 def bin(s): function
32 self.assertEqual(bin(struct.pack(">h", 0x1234)), "1234")
33 self.assertEqual(bin(s), "1234")
37 self.assertEqual(bin(struct.pack("<h", 0x1234)), "3412")
38 self.assertEqual(bin(s), "3412")
42 self.assertEqual(bin(struct.pack(">h", 0x1234)), "1234")
43 self.assertEqual(bin(s), "1234")
47 self.assertEqual(bin(struct.pack("<h", 0x1234)), "3412")
48 self.assertEqual(bin(s), "3412")
60 self.assertEqual(bin(struct.pack(">i", 0x12345678)), "12345678"
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
ClassHeaderReader.java 34 private MyByteArrayInputStream bin = new MyByteArrayInputStream(); field in class:ClassHeaderReader
35 private DataInputStream data = new DataInputStream(bin);
131 bin.readFrom(b, items[index]);
  /external/aac/libSBRdec/src/
sbrdec_drc.cpp 202 int band, bottomMdct, topMdct, bin, useLP; local
227 bin = 0;
351 for (bin = bottomQmf; bin < topQmf; bin++) {
352 FIXP_DBL drcFact1_mag = hDrcData->prevFact_mag[bin];
373 qmfRealSlot[bin] = fMult(qmfRealSlot[bin], drcFact_mag);
375 qmfImagSlot[bin] = fMult(qmfImagSlot[bin], drcFact_mag)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 82 const struct cmd_bin *bin; member in struct:lp_rasterizer_task
316 lp_debug_bin( const struct cmd_bin *bin );
lp_scene.c 96 const struct cmd_bin *bin = lp_scene_get_bin(scene, x, y); local
97 if (bin->head) {
108 * at each bin.
117 /* Remove all commands from a bin. Tries to reuse some of the memory
118 * allocated to the bin, however.
123 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y); local
125 bin->last_state = NULL;
126 bin->head = bin->tail;
127 if (bin->tail)
205 struct cmd_bin *bin = lp_scene_get_bin(scene, i, j); local
451 struct cmd_bin *bin = NULL; local
    [all...]
  /external/jemalloc/src/
tcache.c 93 /* Lock the arena bin associated with the first object. */
97 arena_bin_t *bin = &arena->bins[binind]; local
105 malloc_mutex_lock(&bin->lock);
109 bin->stats.nflushes++;
110 bin->stats.nrequests += tbin->tstats.nrequests;
132 * arena bin than the one that is currently
140 malloc_mutex_unlock(&bin->lock);
147 arena_bin_t *bin = &tcache->arena->bins[binind]; local
148 malloc_mutex_lock(&bin->lock);
149 bin->stats.nflushes++
369 arena_bin_t *bin = &arena->bins[i]; local
452 arena_bin_t *bin = &arena->bins[i]; local
    [all...]
  /external/libhevc/decoder/
ihevcd_cabac.c 198 * @brief Decodes a bin based on probablilty and mps packed context model
201 * Decodes a bin as per Section : 9.3.3.2.1 and calls renormalization if required
203 * 1. Apart from decoding bin, context model is updated as per state transition
204 * 2. Range and Low renormalization is done based on bin and original state
216 * @return bin(boolean) to be decoded
290 DEBUG_RANGE_OFST("bin", ps_cabac->u4_range, ps_cabac->u4_ofst);
300 * @brief Decodes a bypass bin (equi-probable 0 / 1)
303 * Decodes a bypss bin as per Section : 9.3.3.2.3
311 * @return Decoded bypass bin
349 * @brief Decodes a terminate bin (1:terminate 0:do not terminate
549 WORD32 bin; local
600 WORD32 bin; local
664 WORD32 bin; local
725 WORD32 bin; local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_priv.h 82 const struct cmd_bin *bin; member in struct:lp_rasterizer_task
316 lp_debug_bin( const struct cmd_bin *bin );
lp_scene.c 96 const struct cmd_bin *bin = lp_scene_get_bin(scene, x, y); local
97 if (bin->head) {
108 * at each bin.
117 /* Remove all commands from a bin. Tries to reuse some of the memory
118 * allocated to the bin, however.
123 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y); local
125 bin->last_state = NULL;
126 bin->head = bin->tail;
127 if (bin->tail)
205 struct cmd_bin *bin = lp_scene_get_bin(scene, i, j); local
451 struct cmd_bin *bin = NULL; local
    [all...]
  /external/zlib/src/examples/
gzjoin.c 77 /* bin buffered input file type */
84 } bin; typedef in typeref:struct:__anon37547
87 local void bclose(bin *in)
98 /* open a buffered file for input, return a pointer to type bin, or NULL on
100 local bin *bopen(char *name)
102 bin *in;
104 in = malloc(sizeof(bin));
121 local int bload(bin *in)
145 local unsigned long bget4(bin *in)
157 local void bskip(bin *in, unsigned skip
    [all...]
  /development/ide/emacs/
android-common.el 135 (defun android-find-host-bin (binary)
142 (android-host) "/bin/" binary)))
151 (android-find-host-bin "adb"))
158 (concat (android-find-host-bin "fastboot") " -p " (android-product)))

Completed in 1306 milliseconds

1 2 3 4 5