Searched refs:bs (Results 76 - 100 of 337) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbarThemeNonMacCommon.cpp74 IntSize bs = buttonSize(scrollbar); local
79 if (scrollbar->width() <= 2 * bs.width() + 1)
81 return IntRect(scrollbar->x() + bs.width(), scrollbar->y(), scrollbar->width() - 2 * bs.width(), thickness);
83 if (scrollbar->height() <= 2 * bs.height() + 1)
85 return IntRect(scrollbar->x(), scrollbar->y() + bs.height(), thickness, scrollbar->height() - 2 * bs.height());
/external/aac/libAACdec/src/
H A Dblock.h101 HANDLE_FDK_BITSTREAM bs,
129 void CTns_ReadDataPresentFlag(HANDLE_FDK_BITSTREAM bs,
141 AAC_DECODER_ERROR CTns_Read(HANDLE_FDK_BITSTREAM bs,
154 LONG CBlock_GetEscape(HANDLE_FDK_BITSTREAM bs, const LONG q);
160 * \param bs bit stream handle data source
166 HANDLE_FDK_BITSTREAM bs,
176 AAC_DECODER_ERROR CBlock_ReadSpectralData(HANDLE_FDK_BITSTREAM bs,
182 AAC_DECODER_ERROR CBlock_ReadSectionData(HANDLE_FDK_BITSTREAM bs,
289 inline int CBlock_DecodeHuffmanWord( HANDLE_FDK_BITSTREAM bs, /*!< pointer to bitstream */
298 val = CodeBook[index][FDKreadBits(bs,HuffmanBit
[all...]
H A Dpulsedata.h116 * \param bs bit stream handle data source.
122 const HANDLE_FDK_BITSTREAM bs,
/external/smack/src/org/xbill/DNS/utils/
H A Dbase32.java149 ByteArrayOutputStream bs = new ByteArrayOutputStream();
156 bs.write((byte) c);
161 if (bs.size() % 8 != 0)
164 while (bs.size() % 8 != 0)
165 bs.write('=');
168 byte [] in = bs.toByteArray();
170 bs.reset();
171 DataOutputStream ds = new DataOutputStream(bs);
210 return bs.toByteArray();
H A Dbase64.java96 ByteArrayOutputStream bs = new ByteArrayOutputStream();
100 bs.write(raw[i]);
102 byte [] in = bs.toByteArray();
107 bs.reset();
108 DataOutputStream ds = new DataOutputStream(bs);
142 return bs.toByteArray();
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dco-586.pl109 local($i,$as,$ae,$bs,$be,$ai,$bi);
122 $bs=0;
141 $bi=$bs;
146 for ($j=$bs; $j<$end; $j++)
148 &xor($c2,$c2) if ($j == $bs);
164 $nb=$bs+($i >= ($num-1));
181 $bs++ if ($i >= ($num-1));
200 local($i,$as,$ae,$bs,$be,$ai,$bi);
223 $bs=0;
230 $bi=$bs;
[all...]
/external/openssl/crypto/bn/asm/
H A Dco-586.pl109 local($i,$as,$ae,$bs,$be,$ai,$bi);
122 $bs=0;
141 $bi=$bs;
146 for ($j=$bs; $j<$end; $j++)
148 &xor($c2,$c2) if ($j == $bs);
164 $nb=$bs+($i >= ($num-1));
181 $bs++ if ($i >= ($num-1));
200 local($i,$as,$ae,$bs,$be,$ai,$bi);
223 $bs=0;
230 $bi=$bs;
[all...]
/external/openssl/crypto/bn/asm/x86/
H A Dcomba.pl97 local($i,$as,$ae,$bs,$be,$ai,$bi);
110 $bs=0;
129 $bi=$bs;
134 for ($j=$bs; $j<$end; $j++)
136 &xor($c2,$c2) if ($j == $bs);
152 $nb=$bs+($i >= ($num-1));
169 $bs++ if ($i >= ($num-1));
188 local($i,$as,$ae,$bs,$be,$ai,$bi);
211 $bs=0;
218 $bi=$bs;
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_jacobi_preconditioner.cc71 const CompressedRowBlockStructure* bs = A.block_structure(); local
76 for (int r = 0; r < bs->rows.size(); ++r) {
77 const int row_block_size = bs->rows[r].block.size;
78 const vector<Cell>& cells = bs->rows[r].cells;
80 const int col_block_size = bs->cols[cells[c].block_id].size;
105 for (int c = 0; c < bs->cols.size(); ++c) {
H A Dschur_jacobi_preconditioner.cc48 const CompressedRowBlockStructure& bs,
53 const int num_blocks = bs.cols.size() - options_.elimination_groups[0];
60 block_size_[i] = bs.cols[i + options_.elimination_groups[0]].size;
64 InitEliminator(bs);
72 const CompressedRowBlockStructure& bs) {
80 eliminator_->Init(eliminator_options.elimination_groups[0], &bs);
47 SchurJacobiPreconditioner( const CompressedRowBlockStructure& bs, const Preconditioner::Options& options) argument
71 InitEliminator( const CompressedRowBlockStructure& bs) argument
H A Dblock_jacobian_writer.cc150 CompressedRowBlockStructure* bs = new CompressedRowBlockStructure; local
156 bs->cols.resize(parameter_blocks.size());
160 bs->cols[i].size = parameter_blocks[i]->LocalSize();
161 bs->cols[i].position = cursor;
162 cursor += bs->cols[i].size;
169 bs->rows.resize(residual_blocks.size());
172 CompressedRow* row = &bs->rows[i];
206 BlockSparseMatrix* jacobian = new BlockSparseMatrix(bs);
H A Dschur_jacobi_preconditioner.h78 // Initialize the symbolic structure of the preconditioner. bs is
84 SchurJacobiPreconditioner(const CompressedRowBlockStructure& bs,
93 void InitEliminator(const CompressedRowBlockStructure& bs);
H A Dschur_eliminator_impl.h81 Init(int num_eliminate_blocks, const CompressedRowBlockStructure* bs) { argument
88 const int num_col_blocks = bs->cols.size();
89 const int num_row_blocks = bs->rows.size();
102 lhs_num_rows += bs->cols[i].size;
112 const int chunk_block_id = bs->rows[r].cells.front().block_id;
122 const int e_block_size = bs->cols[chunk_block_id].size;
127 const CompressedRow& row = bs->rows[r + chunk.size];
138 buffer_size += e_block_size * bs->cols[cell.block_id].size;
183 const CompressedRowBlockStructure* bs = A->block_structure(); local
184 const int num_col_blocks = bs
309 const CompressedRowBlockStructure* bs = A->block_structure(); local
380 const CompressedRowBlockStructure* bs = A->block_structure(); local
443 const CompressedRowBlockStructure* bs = A->block_structure(); local
499 ChunkOuterProduct(const CompressedRowBlockStructure* bs, const Matrix& inverse_ete, const double* buffer, const BufferLayoutType& buffer_layout, BlockRandomAccessMatrix* lhs) argument
561 const CompressedRowBlockStructure* bs = A->block_structure(); local
599 const CompressedRowBlockStructure* bs = A->block_structure(); local
652 const CompressedRowBlockStructure* bs = A->block_structure(); local
[all...]
H A Dvisibility_based_preconditioner.cc72 const CompressedRowBlockStructure& bs,
83 num_blocks_ = bs.cols.size() - options_.elimination_groups[0];
91 block_size_[i] = bs.cols[i + options_.elimination_groups[0]].size;
97 ComputeClusterJacobiSparsity(bs);
100 ComputeClusterTridiagonalSparsity(bs);
106 InitStorage(bs);
108 InitEliminator(bs);
140 const CompressedRowBlockStructure& bs) {
142 ComputeVisibility(bs, options_.elimination_groups[0], &visibility);
158 const CompressedRowBlockStructure& bs) {
71 VisibilityBasedPreconditioner( const CompressedRowBlockStructure& bs, const Preconditioner::Options& options) argument
139 ComputeClusterJacobiSparsity( const CompressedRowBlockStructure& bs) argument
157 ComputeClusterTridiagonalSparsity( const CompressedRowBlockStructure& bs) argument
178 InitStorage( const CompressedRowBlockStructure& bs) argument
245 ComputeBlockPairsInPreconditioner( const CompressedRowBlockStructure& bs) argument
329 InitEliminator( const CompressedRowBlockStructure& bs) argument
[all...]
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dunderflow.pass.cpp44 std::ifstream bs("underflow.dat");
45 test_buf f(bs.rdbuf());
56 std::ifstream bs("underflow.dat");
57 test_buf f(bs.rdbuf());
77 std::ifstream bs("underflow_utf8.dat");
78 test_buf f(bs.rdbuf());
/external/openssl/ssl/
H A Dd1_enc.c142 int bs,i,j,k,mac_size=0; local
199 bs=EVP_CIPHER_block_size(ds->cipher);
201 if ((bs != 1) && send)
203 i=bs-((int)l%bs);
240 if (l == 0 || l%bs != 0)
255 if ((bs != 1) && !send)
256 return tls1_cbc_remove_padding(s, rec, bs, mac_size);
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Dasn1_par.c319 ASN1_INTEGER *bs; local
323 bs=d2i_ASN1_INTEGER(NULL,&opp,len+hl);
324 if (bs != NULL)
327 if (bs->type == V_ASN1_NEG_INTEGER)
330 for (i=0; i<bs->length; i++)
333 bs->data[i]) <= 0)
336 if (bs->length == 0)
347 M_ASN1_INTEGER_free(bs);
351 ASN1_ENUMERATED *bs; local
355 bs
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_segmentation.c161 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
169 if (bw == bs && bh == bs) {
171 t_unpred_seg_counts, bs, bs, mi_row, mi_col);
172 } else if (bw == bs && bh < bs) {
174 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
176 temporal_predictor_count, t_unpred_seg_counts, bs, hb
[all...]
/external/fio/profiles/
H A Dtiobench.c7 static unsigned int bs = 4096; variable
28 unsigned int bs; member in struct:tiobench_options
49 .off1 = offsetof(struct tiobench_options, bs),
101 sprintf(bs_idx, "bs=%u", bs);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_segmentation.c174 const int bs = num_8x8_blocks_wide_lookup[bsize], hbs = bs / 2; local
182 if (bw == bs && bh == bs) {
184 t_unpred_seg_counts, bs, bs, mi_row, mi_col);
185 } else if (bw == bs && bh < bs) {
187 t_unpred_seg_counts, bs, hbs, mi_row, mi_col);
189 temporal_predictor_count, t_unpred_seg_counts, bs, hb
[all...]
/external/openssl/crypto/asn1/
H A Dasn1_par.c321 ASN1_INTEGER *bs; local
325 bs=d2i_ASN1_INTEGER(NULL,&opp,len+hl);
326 if (bs != NULL)
329 if (bs->type == V_ASN1_NEG_INTEGER)
332 for (i=0; i<bs->length; i++)
335 bs->data[i]) <= 0)
338 if (bs->length == 0)
349 M_ASN1_INTEGER_free(bs);
353 ASN1_ENUMERATED *bs; local
357 bs
[all...]
/external/stlport/test/compiler/
H A Deh.cc36 BigStruct *bs = all.allocate(1024*1024*1024); local
/external/openssl/crypto/ocsp/
H A Docsp_cl.c219 int OCSP_resp_count(OCSP_BASICRESP *bs) argument
221 if (!bs) return -1;
222 return sk_OCSP_SINGLERESP_num(bs->tbsResponseData->responses);
227 OCSP_SINGLERESP *OCSP_resp_get0(OCSP_BASICRESP *bs, int idx) argument
229 if (!bs) return NULL;
230 return sk_OCSP_SINGLERESP_value(bs->tbsResponseData->responses, idx);
235 int OCSP_resp_find(OCSP_BASICRESP *bs, OCSP_CERTID *id, int last) argument
240 if (!bs) return -1;
243 sresp = bs->tbsResponseData->responses;
288 int OCSP_resp_find_status(OCSP_BASICRESP *bs, OCSP_CERTI argument
[all...]
/external/qemu/include/sysemu/
H A Dblockdev.h16 void blockdev_mark_auto_del(BlockDriverState *bs);
17 void blockdev_auto_del(BlockDriverState *bs);
40 extern DriveInfo *drive_get_by_blockdev(BlockDriverState *bs);
/external/qemu/
H A Ddma-helpers.c41 BlockDriverState *bs; member in struct:__anon29636
120 dbs->acb = bdrv_aio_writev(dbs->bs, dbs->sector_num, &dbs->iov,
123 dbs->acb = bdrv_aio_readv(dbs->bs, dbs->sector_num, &dbs->iov,
148 BlockDriverState *bs, QEMUSGList *sg, uint64_t sector_num,
152 DMAAIOCB *dbs = qemu_aio_get(&dma_aio_pool, bs, cb, opaque);
155 dbs->bs = bs;
172 BlockDriverAIOCB *dma_bdrv_read(BlockDriverState *bs, argument
176 return dma_bdrv_io(bs, sg, sector, cb, opaque, 0);
179 BlockDriverAIOCB *dma_bdrv_write(BlockDriverState *bs, argument
147 dma_bdrv_io( BlockDriverState *bs, QEMUSGList *sg, uint64_t sector_num, BlockDriverCompletionFunc *cb, void *opaque, int is_write) argument
[all...]

Completed in 791 milliseconds

1234567891011>>