HomeSort by relevance Sort by last modified time
    Searched refs:max_size (Results 151 - 175 of 531) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.h 101 int max_size,
  /external/nanopb-c/
pb_encode.h 24 * 4) Substreams will modify max_size and bytes_written. Don't use them
41 size_t max_size; /* Limit number of output bytes written (or use SIZE_MAX). */ member in struct:_pb_ostream_t
  /external/pdfium/core/fxcodec/codec/
fx_codec_jpx_opj.cpp 70 FX_SAFE_SIZE_T max_size = maxw; local
71 max_size *= maxh;
72 max_size *= sizeof(int);
73 if (!max_size.IsValid())
82 int* r = static_cast<int*>(opj_image_data_alloc(max_size.ValueOrDie()));
83 int* g = static_cast<int*>(opj_image_data_alloc(max_size.ValueOrDie()));
84 int* b = static_cast<int*>(opj_image_data_alloc(max_size.ValueOrDie()));
88 max_size /= sizeof(int);
89 for (size_t i = 0; i < max_size.ValueOrDie(); ++i) {
129 FX_SAFE_SIZE_T max_size = maxw local
    [all...]
  /external/tensorflow/tensorflow/contrib/hvx/hexagon_controller/src_soc_interface/include/
soc_interface.h 86 void* soc_interface_SetOneNodeOutputs(int output_count, int* max_size);
  /external/tensorflow/tensorflow/core/kernels/hexagon/
soc_interface.h 85 void* soc_interface_SetOneNodeOutputs(int output_count, int* max_size);
  /external/webp/src/enc/
histogram_enc.h 53 int max_size; // maximum capacity member in struct:__anon43750
picture_enc.c 183 writer->max_size = 0;
194 if (next_size > w->max_size) {
196 uint64_t next_max_size = 2ULL * w->max_size;
209 w->max_size = (size_t)next_max_size;
223 writer->max_size = 0;
  /system/core/libappfuse/include/libappfuse/
FuseBuffer.h 46 bool WriteWithBody(int fd, size_t max_size, const void* data) const;
  /external/curl/lib/vauth/
krb5_sspi.c 289 unsigned long max_size = 0; local
373 max_size = ntohl(indata & 0xFFFFFF00);
374 if(max_size > 0) {
378 max_size = 0;
409 outdata = htonl(max_size) | sec_layer;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_tempfile.py 638 def do_create(self, max_size=0, dir=None, pre="", suf=""):
642 file = tempfile.SpooledTemporaryFile(max_size=max_size, dir=dir, prefix=pre, suffix=suf)
653 f = self.do_create(max_size=100, pre="a", suf=".txt")
660 f = tempfile.SpooledTemporaryFile(max_size=10, dir=dir)
672 # A SpooledTemporaryFile can be written to multiple within the max_size
673 f = self.do_create(max_size=30)
681 # A SpooledTemporaryFile should hold exactly max_size bytes, and roll
683 f = self.do_create(max_size=30)
701 # A SpooledTemporaryFile should hold exactly max_size bytes, and roll
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 67 FT_Long max_size; /* maximum cumulative allocated size */ member in struct:FT_MemSourceRec_
492 node->max_size = 0;
582 if ( source->cur_size > source->max_size )
583 source->max_size = source->cur_size;
911 if ( s2->max_size > s1->max_size )
913 else if ( s2->max_size < s1->max_size )
981 source->cur_size, source->max_size, source->cur_max,
  /system/nfc/src/nfc/ndef/
ndef_utils.cc 793 void NDEF_MsgInit(uint8_t* p_msg, uint32_t max_size, uint32_t* p_cur_size) {
795 memset(p_msg, 0, max_size);
809 extern tNDEF_STATUS NDEF_MsgAddRec(uint8_t* p_msg, uint32_t max_size,
828 if ((*p_cur_size + recSize) > max_size) return (NDEF_MSG_INSUFFICIENT_MEM);
895 tNDEF_STATUS NDEF_MsgAppendPayload(uint8_t* p_msg, uint32_t max_size,
932 if ((*p_cur_size + add_pl_len + incr_lenfld) > max_size)
977 tNDEF_STATUS NDEF_MsgReplacePayload(uint8_t* p_msg, uint32_t max_size,
1015 if ((*p_cur_size + paylen_delta + 3) > max_size)
1022 } else if ((*p_cur_size + paylen_delta) > max_size)
1086 tNDEF_STATUS NDEF_MsgReplaceType(uint8_t* p_msg, uint32_t max_size,
    [all...]
  /external/e2fsprogs/resize/
main.c 259 blk64_t max_size = 0; local
488 &max_size);
505 new_size = max_size;
555 max_size = new_size;
557 if (!force && (new_size > max_size)) {
560 " of %llu blocks.\n\n"), max_size,
  /system/core/libunwindstack/
Memory.cpp 106 uint64_t max_size; local
107 if (__builtin_add_overflow(addr, bytes, &max_size)) {
232 uint64_t max_size; local
233 if (!__builtin_add_overflow(size, offset_, &max_size) && max_size < size_) {
235 size_ = max_size;
  /external/python/cpython2/Lib/test/
test_tempfile.py 844 def do_create(self, max_size=0, dir=None, pre="", suf=""):
848 file = tempfile.SpooledTemporaryFile(max_size=max_size, dir=dir, prefix=pre, suffix=suf)
859 f = self.do_create(max_size=100, pre="a", suf=".txt")
866 f = tempfile.SpooledTemporaryFile(max_size=10, dir=dir)
878 # A SpooledTemporaryFile can be written to multiple within the max_size
879 f = self.do_create(max_size=30)
887 # A SpooledTemporaryFile should hold exactly max_size bytes, and roll
889 f = self.do_create(max_size=30)
907 # A SpooledTemporaryFile should hold exactly max_size bytes, and rol
    [all...]
  /art/openjdkjvmti/
jvmti_allocator.h 106 size_type max_size() const { function in class:openjdkjvmti::JvmtiAllocator
114 DCHECK_LE(n, max_size());
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 25 static int max_size; member in struct:outer::inner::array
35 int outer::inner::array<T, N>::max_size = 17; member in class:outer::inner::array
189 // CHECK: Keyword: "int" [35:1 - 35:4] VarDecl=max_size:35:32 (Definition)
191 // CHECK: Punctuation: "::" [35:10 - 35:12] VarDecl=max_size:35:32 (Definition)
193 // CHECK: Punctuation: "::" [35:17 - 35:19] VarDecl=max_size:35:32 (Definition)
195 // CHECK: Punctuation: "<" [35:24 - 35:25] VarDecl=max_size:35:32 (Definition)
197 // CHECK: Punctuation: "," [35:26 - 35:27] VarDecl=max_size:35:32 (Definition)
199 // CHECK: Punctuation: ">" [35:29 - 35:30] VarDecl=max_size:35:32 (Definition)
200 // CHECK: Punctuation: "::" [35:30 - 35:32] VarDecl=max_size:35:32 (Definition)
201 // CHECK: Identifier: "max_size" [35:32 - 35:40] VarDecl=max_size:35:32 (Definition
    [all...]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
halton_sequence_impl.py 160 max_size = math_ops.reduce_max(max_sizes_by_axes)
172 exponents_by_axes = array_ops.tile([math_ops.range(max_size)], [dim, 1])
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
iface_config_utils.cpp 32 struct wpa_supplicant* wpa_s, const std::string& value, uint32_t max_size,
35 if (value.size() > max_size) {
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/
iface_config_utils.cpp 32 struct wpa_supplicant* wpa_s, const std::string& value, uint32_t max_size,
35 if (value.size() > max_size) {
  /hardware/intel/common/libmix/mix_video/src/
mixvideoformatenc.h 54 typedef MIX_RESULT (*MixVideoFmtEncGetMaxEncodedBufSizeFunc) (MixVideoFormatEnc *mix, guint *max_size);
175 MIX_RESULT mix_videofmtenc_get_max_coded_buffer_size(MixVideoFormatEnc *mix, guint *max_size);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pool_allocator.h 168 max_size() const _GLIBCXX_USE_NOEXCEPT
219 if (__n > this->max_size())
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pool_allocator.h 168 max_size() const _GLIBCXX_USE_NOEXCEPT
219 if (__n > this->max_size())
  /prebuilts/misc/common/swig/include/2.0.11/lua/
_std_common.i 30 unsigned int max_size() const;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
PoolAlloc.h 311 size_type max_size() const { return static_cast<size_type>(-1) / sizeof(T); } function in class:glslang::pool_allocator
312 size_type max_size(int size) const { return static_cast<size_type>(-1) / size; } function in class:glslang::pool_allocator

Completed in 520 milliseconds

1 2 3 4 5 67 8 91011>>