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

1 2 3 4

  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 16 int bin = bins[k + (j*y)]; local
18 double b = double(bin) / double(reps);
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_input_event_box.h 41 GtkBin bin; member in struct:_GtkInputEventBox
  /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/chromium/chrome/browser/ui/gtk/
gtk_floating_container.h 60 GtkBin bin; member in struct:_GtkFloatingContainer
gtk_floating_container.cc 135 GtkBin* bin = GTK_BIN(container); local
136 if (bin->child == widget) {
195 GtkBin* bin = GTK_BIN(widget); local
196 if (bin && bin->child) {
197 gtk_widget_size_request(bin->child, requisition);
217 GtkBin* bin = GTK_BIN(widget); local
218 if (bin->child) {
219 gtk_widget_size_allocate(bin->child, allocation);
  /external/chromium_org/ui/base/gtk/
gtk_floating_container.h 61 GtkBin bin; member in struct:_GtkFloatingContainer
gtk_floating_container.cc 137 GtkBin* bin = GTK_BIN(container); local
138 if (gtk_bin_get_child(bin) == widget) {
197 GtkBin* bin = GTK_BIN(widget); local
198 if (bin && gtk_bin_get_child(bin)) {
199 gtk_widget_size_request(gtk_bin_get_child(bin), requisition);
219 GtkBin* bin = GTK_BIN(widget); local
220 if (gtk_bin_get_child(bin)) {
221 gtk_widget_size_allocate(gtk_bin_get_child(bin), allocation);
  /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/openssh/
bufbn.c 102 u_char buf[2], *bin; local
120 bin = buffer_ptr(buffer);
121 if (BN_bin2bn(bin, bytes, value) == NULL) {
191 u_char *bin; local
193 if ((bin = buffer_get_string_ret(buffer, &len)) == NULL) {
198 if (len > 0 && (bin[0] & 0x80)) {
200 xfree(bin);
206 xfree(bin);
209 if (BN_bin2bn(bin, len, value) == NULL) {
211 xfree(bin);
    [all...]
  /external/chromium_org/cc/resources/
tile_manager_perftest.cc 69 TilePriority GetTilePriorityFromBin(ManagedTileBin bin) {
70 switch (bin) {
89 ManagedTileBin GetNextBin(ManagedTileBin bin) {
90 switch (bin) {
109 void CreateBinTiles(int count, ManagedTileBin bin, TileBinVector* tiles) {
120 tile->SetPriority(ACTIVE_TREE, GetTilePriorityFromBin(bin));
121 tile->SetPriority(PENDING_TREE, GetTilePriorityFromBin(bin));
122 tiles->push_back(std::make_pair(tile, bin));
150 ManagedTileBin bin = GetNextBin(tiles[i].second); local
151 tile->SetPriority(ACTIVE_TREE, GetTilePriorityFromBin(bin));
    [all...]
  /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/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsReadWrite.java 126 ByteArrayInputStream bin=new ByteArrayInputStream(bout.toByteArray()); local
129 Node newPhysicsRootNode=(Node)imp.load(bin);
  /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();
  /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/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/jmonkeyengine/engine/src/test/jme3test/export/
TestAssetLinkNode.java 82 ByteArrayInputStream bin=new ByteArrayInputStream(bout.toByteArray()); local
85 Node newLoaderNode=(Node)imp.load(bin);
  /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...]

Completed in 502 milliseconds

1 2 3 4