Home
last modified time | relevance | path

Searched refs:temp_size (Results 1 – 13 of 13) sorted by relevance

/external/libchrome/base/metrics/
Dpersistent_histogram_allocator_unittest.cc164 const size_t temp_size = 64 << 10; // 64 KiB in TEST_F() local
168 GlobalHistogramAllocator::CreateWithFile(temp_file, temp_size, 0, temp_name); in TEST_F()
174 GlobalHistogramAllocator::CreateWithFile(temp_file, temp_size, 0, ""); in TEST_F()
193 const size_t temp_size = 64 << 10; // 64 KiB in TEST_F() local
195 ASSERT_TRUE(GlobalHistogramAllocator::CreateSpareFile(temp_file, temp_size)); in TEST_F()
199 EXPECT_EQ(static_cast<int64_t>(temp_size), file.GetLength()); in TEST_F()
202 for (size_t pos = 0; pos < temp_size; pos += sizeof(buffer)) { in TEST_F()
/external/mesa3d/src/gallium/drivers/vc4/kernel/
Dvc4_gem.c44 uint32_t temp_size = exec_size + (sizeof(struct vc4_shader_state) * in vc4_get_bcl() local
51 temp_size < exec_size) { in vc4_get_bcl()
63 temp = kmalloc(temp_size, GFP_KERNEL); in vc4_get_bcl()
/external/pdfium/core/fpdfapi/edit/
Dcpdf_creator.cpp76 size_t temp_size = size; in WriteBlock() local
77 while (temp_size) { in WriteBlock()
78 size_t buf_size = std::min(kArchiveBufferSize - current_length_, temp_size); in WriteBlock()
85 temp_size -= buf_size; in WriteBlock()
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc356 const size_t temp_size = 64 << 10; // 64 KiB in TEST_F() local
360 GlobalActivityTracker::CreateWithFile(temp_file, temp_size, 0, "foo", 3); in TEST_F()
369 GlobalActivityTracker::CreateWithFile(temp_file, temp_size, 0, "bar", 3); in TEST_F()
/external/webrtc/webrtc/base/
Dhttpbase.cc153 unsigned int temp_size; in ProcessLine() local
154 if (sscanf(value_str.c_str(), "%u", &temp_size) != 1) { in ProcessLine()
158 data_size_ = static_cast<size_t>(temp_size); in ProcessLine()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp819 unsigned long temp_size = *dest_size; in Encode() local
820 if (!FlateCompress(*dest_buf, &temp_size, src_buf, src_size)) in Encode()
823 *dest_size = (uint32_t)temp_size; in Encode()
/external/libxaac/decoder/
Dixheaacd_api.c1063 WORD32 temp_size = 0; in ixheaacd_persistent_buffer_sizes() local
1067 temp_size += sizeof(ia_pvc_data_struct); in ixheaacd_persistent_buffer_sizes()
1068 temp_size += sizeof(ia_esbr_hbe_txposer_struct) * 2; in ixheaacd_persistent_buffer_sizes()
1069 temp_size += (MAX_HBE_PERSISTENT_SIZE * 2); in ixheaacd_persistent_buffer_sizes()
1070 temp_size += (MAX_QMF_BUF_LEN * 2 * 2 * sizeof(FLOAT32 *)); in ixheaacd_persistent_buffer_sizes()
1071 temp_size += (MAX_QMF_BUF_LEN * MAX_QMF_BUF_LEN * 2 * 2 * sizeof(FLOAT32)); in ixheaacd_persistent_buffer_sizes()
1072 size_buffers += temp_size * num_channel; in ixheaacd_persistent_buffer_sizes()
/external/tensorflow/tensorflow/contrib/mpi_collectives/kernels/
Dmpi_ops.cc988 const size_t temp_size = in ComputeAsync() local
991 temp_shape.AddDim(temp_size); in ComputeAsync()
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_ops.cc1042 const size_t temp_size = in ComputeAsync() local
1045 temp_shape.AddDim(temp_size); in ComputeAsync()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc1236 uint32_t temp_size = last_keyframe_._size; // Save size. in Decode() local
1239 last_keyframe_._size = temp_size; // Restore buffer size. in Decode()
/external/pcre/dist2/src/
Dpcre2_intmodedep.h789 PCRE2_SIZE temp_size; /* Used for short-term PCRE2_SIZE values */ member
Dpcre2_match.c1043 #define Loclength F->temp_size in match()
4617 #define Loffset F->temp_size in match()
/external/pdfium/third_party/libopenjpeg20/
Dj2k.c6919 OPJ_FLOAT32 temp_size; in opj_j2k_setup_encoder() local
6920 temp_size = (OPJ_FLOAT32)(((double)image->numcomps * image->comps[0].w * in opj_j2k_setup_encoder()
6924 if (temp_size > INT_MAX) { in opj_j2k_setup_encoder()
6927 parameters->max_cs_size = (int) floor(temp_size); in opj_j2k_setup_encoder()