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

1 2 3 4 5 6 7 8 910

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
BidiTest.java 28 Bidi bd; field in class:BidiTest
50 bd = new Bidi(null, Bidi.DIRECTION_RIGHT_TO_LEFT);
57 bd = new Bidi(null, 0, new byte[] { 0 }, 0, 0,
65 bd = new Bidi(null);
70 bd = new Bidi("a".toCharArray(), 0, null, 0, 1,
76 bd = new Bidi("1".toCharArray(), 0, new byte[] { 0 }, 0, 20,
84 bd = new Bidi("1234567".toCharArray(), 0, new byte[] { 0 }, 0, 4,
92 bd = new Bidi("1234567".toCharArray(), 4, new byte[] { 0, 1, 2, 3,
100 bd = new Bidi("1234567".toCharArray(), 0, new byte[] { 0, 1, 2, 3,
109 bd = new Bidi(new char[] { 't','t','t'}, -1, new byte[] { 2, 2 }, 1, 1, 1)
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
OldBigDecimalConstructorsTest.java 48 BigDecimal bd; local
53 bd = new BigDecimal(bi, mc);
54 assertEquals("incorrect value", "1.234567890123456789012345678902E+34", bd.toString());
55 bd = new BigDecimal(nbi, mc);
56 assertEquals("incorrect value", "-1.234567890123456789012345678902E+34", bd.toString());
59 bd = new BigDecimal(bi, mc);
60 assertEquals("incorrect value", "1.234567890123456789012345678E+34", bd.toString());
61 bd = new BigDecimal(nbi, mc);
62 assertEquals("incorrect value", "-1.234567890123456789012345678E+34", bd.toString());
65 bd = new BigDecimal(bi, mc)
134 BigDecimal bd; local
266 BigDecimal bd; local
306 BigDecimal bd; local
393 BigDecimal bd; local
445 BigDecimal bd; local
528 BigDecimal bd; local
583 BigDecimal bd; local
651 BigDecimal bd = new BigDecimal(a); local
674 BigDecimal bd; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldBidiTest.java 27 Bidi bd = new Bidi("bidi", 173); local
28 assertNotNull("Bidi representation is null", bd.toString());
42 Bidi bd = new Bidi("text", Bidi.DIRECTION_LEFT_TO_RIGHT); local
44 assertEquals(0, bd.getRunLevel(0));
45 assertEquals(0, bd.getRunLevel(bd.getRunCount()));
50 bd = new Bidi("text", Bidi.DIRECTION_RIGHT_TO_LEFT);
52 assertEquals(2, bd.getRunLevel(0));
57 bd = new Bidi("text", Bidi.DIRECTION_DEFAULT_RIGHT_TO_LEFT);
59 assertEquals(0, bd.getRunLevel(0))
66 Bidi bd = new Bidi(new char[] { 's', 's', 's' }, 0, new byte[] { (byte) -7, local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
FormatterTest.java 32 BigDecimal bd = new BigDecimal((long) 1024, mc); local
39 assertEquals("1.00KB", Formatter.formatFileSize(mContext, bd.pow(1).longValue()));
41 assertEquals("1.00MB", Formatter.formatFileSize(mContext, bd.pow(2).longValue()));
43 assertEquals("1.00GB", Formatter.formatFileSize(mContext, bd.pow(3).longValue()));
45 assertEquals("1.00TB", Formatter.formatFileSize(mContext, bd.pow(4).longValue()));
47 assertEquals("1.00PB", Formatter.formatFileSize(mContext, bd.pow(5).longValue()));
49 assertEquals("1024PB", Formatter.formatFileSize(mContext, bd.pow(6).longValue()));
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
SimpleContentHandler.java 47 * @param bd encapsulates the values (either read from the
56 public abstract void bodyDecoded(BodyDescriptor bd, InputStream is) throws IOException;
89 public final void body(BodyDescriptor bd, InputStream is) throws IOException {
90 if (bd.isBase64Encoded()) {
91 bodyDecoded(bd, new Base64InputStream(is));
93 else if (bd.isQuotedPrintableEncoded()) {
94 bodyDecoded(bd, new QuotedPrintableInputStream(is));
97 bodyDecoded(bd, is);
AbstractContentHandler.java 45 public void startMultipart(BodyDescriptor bd) {
51 public void body(BodyDescriptor bd, InputStream is) throws IOException {
ContentHandler.java 142 * @param bd encapsulates the values (either read from the
148 void startMultipart(BodyDescriptor bd);
159 * @param bd see {@link #startMultipart(BodyDescriptor)}
161 * - it will not be decoded if encoded. The <code>bd</code>
166 void body(BodyDescriptor bd, InputStream is) throws IOException;
MimeStreamParser.java 137 BodyDescriptor bd = parseHeader(is); local
139 if (bd.isMultipart()) {
140 bodyDescriptors.addFirst(bd);
142 handler.startMultipart(bd);
145 new MimeBoundaryInputStream(is, bd.getBoundary());
150 tempIs = new MimeBoundaryInputStream(is, bd.getBoundary());
171 } else if (bd.isMessage()) {
172 if (bd.isBase64Encoded()) {
176 } else if (bd.isQuotedPrintableEncoded()) {
181 bodyDescriptors.addFirst(bd);
227 BodyDescriptor bd = new BodyDescriptor(bodyDescriptors.isEmpty() local
    [all...]
  /external/libpng/contrib/libtests/
gentests.sh 88 for bd in 1 2 4 8
90 doit "$ct" "$bd"
98 for bd in 8 16
100 doit "$ct" "$bd"
  /external/fio/engines/
binject.c 35 static void binject_buc_init(struct binject_data *bd, struct io_u *io_u)
96 struct binject_data *bd = td->io_ops->data; local
98 void *buf = bd->cmds;
113 bd->fd_flags[i] = fio_set_fd_nonblocking(bf->fd, "binject");
115 bd->fd_flags[i] = -1;
117 bd->pfds[i].fd = bf->fd;
118 bd->pfds[i].events = POLLIN;
123 ret = poll(bd->pfds, td->o.nr_files, -1);
132 if (pollin_events(bd->pfds, td->o.nr_files))
150 bd->events[ev_index] = (struct io_u *) (unsigned long) buc->usr_ptr
188 struct binject_data *bd = td->io_ops->data; local
237 struct binject_data *bd = td->io_ops->data; local
379 struct binject_data *bd = td->io_ops->data; local
392 struct binject_data *bd; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_live_variables.cpp 70 if (!bd[b].def[reg])
71 bd[b].use[reg] = true;
85 if (!bd[b].use[reg])
86 bd[b].def[reg] = true;
111 if (bd[b].use[i] || (bd[b].liveout[i] && !bd[b].def[i])) {
112 if (!bd[b].livein[i]) {
113 bd[b].livein[i] = true;
125 if (bd[block->block_num].livein[i] && !bd[b].liveout[i])
    [all...]
brw_fs_live_variables.h 78 struct block_data *bd; member in class:brw::fs_live_variables
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.cpp 70 if (!bd[b].def[reg])
71 bd[b].use[reg] = true;
85 if (!bd[b].use[reg])
86 bd[b].def[reg] = true;
111 if (bd[b].use[i] || (bd[b].liveout[i] && !bd[b].def[i])) {
112 if (!bd[b].livein[i]) {
113 bd[b].livein[i] = true;
125 if (bd[block->block_num].livein[i] && !bd[b].liveout[i])
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
subtract_test.cc 21 typedef void (*SubtractBlockFunc)(BLOCK *be, BLOCKD *bd, int pitch);
37 BLOCKD bd; local
49 bd.predictor = reinterpret_cast<unsigned char*>(
50 vpx_memalign(16, kBlockHeight * kDiffPredStride * sizeof(*bd.predictor)));
77 uint8_t *predictor = bd.predictor;
85 ASM_REGISTER_STATE_CHECK(GetParam()(&be, &bd, kDiffPredStride));
89 predictor = bd.predictor;
102 vpx_free(bd.predictor);
  /external/libvpx/libvpx/test/
subtract_test.cc 21 typedef void (*subtract_b_fn_t)(BLOCK *be, BLOCKD *bd, int pitch);
37 BLOCKD bd; local
49 bd.predictor = reinterpret_cast<unsigned char*>(
50 vpx_memalign(16, kBlockHeight * kDiffPredStride * sizeof(*bd.predictor)));
77 uint8_t *predictor = bd.predictor;
85 REGISTER_STATE_CHECK(GetParam()(&be, &bd, kDiffPredStride));
89 predictor = bd.predictor;
102 vpx_free(bd.predictor);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
subtract_test.cc 21 typedef void (*subtract_b_fn_t)(BLOCK *be, BLOCKD *bd, int pitch);
37 BLOCKD bd; local
49 bd.predictor = reinterpret_cast<unsigned char*>(
50 vpx_memalign(16, kBlockHeight * kDiffPredStride * sizeof(*bd.predictor)));
77 uint8_t *predictor = bd.predictor;
85 REGISTER_STATE_CHECK(GetParam()(&be, &bd, kDiffPredStride));
89 predictor = bd.predictor;
102 vpx_free(bd.predictor);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_idct.h 121 typedef void (*high_transform_1d)(const tran_low_t*, tran_low_t*, int bd);
148 int eob, int bd);
150 int eob, int bd);
152 int eob, int bd);
154 int eob, int bd);
156 int eob, int bd);
158 uint8_t *dest, int stride, int eob, int bd);
160 uint8_t *dest, int stride, int eob, int bd);
162 uint8_t *dest, int stride, int eob, int bd);
vp9_convolve.h 31 int w, int h, int bd);
  /external/qemu/audio/
dsound_template.h 190 DSCBUFFERDESC bd; local
195 DSBUFFERDESC bd; local
209 memset (&bd, 0, sizeof (bd));
210 bd.dwSize = sizeof (bd);
211 bd.lpwfxFormat = &wfx;
213 bd.dwBufferBytes = conf.bufsize_in;
216 &bd,
221 bd.dwFlags = DSBCAPS_STICKYFOCUS | DSBCAPS_GETCURRENTPOSITION2
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
diy-fp.cc 50 uint64_t bd = b * d; local
51 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 36 void vp8_subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch)
41 unsigned char *predictor = &bd->predictor[0];
  /external/chromium_org/v8/src/
diy-fp.cc 26 uint64_t bd = b * d; local
27 uint64_t tmp = (bd >> 32) + (ad & kM32) + (bc & kM32);
  /external/libvpx/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 36 void vp8_subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch)
41 unsigned char *predictor = &bd->predictor[0];
  /external/llvm/test/MC/MachO/ARM/
llvm-objdump-macho.s 14 # CHECK: 2: 80 bd pop {r7, pc}
17 # CHECK: 6: 80 bd pop {r7, pc}
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
vp8_enc_stubs_sse2.c 36 void vp8_subtract_b_sse2(BLOCK *be, BLOCKD *bd, int pitch)
41 unsigned char *predictor = &bd->predictor[0];

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 910