Home
last modified time | relevance | path

Searched refs:size (Results 1876 - 1900 of 21438) sorted by relevance

1...<<71727374757677787980>>...858

/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dvalhall.py76 def __init__(self, name, start, size, implied = False, force_enum = None):
79 self.size = size
81 self.is_enum = (force_enum is not None) or size > 1
102 def __init__(self, index, size, is_float = False, swizzle = False,
106 self.size = size
132 self.bits['lane'] = 2 if size in (8, 32) else 1
134 assert(size in [16, 32])
166 self.size
[all...]
/third_party/mesa3d/src/util/tests/
H A Dcache_test.cpp235 size_t size; in test_put_and_get() local
249 result = (char *) disk_cache_get(cache, blob_key, &size); in test_put_and_get()
251 EXPECT_EQ(size, 0) << "disk_cache_get with non-existent item (size)"; in test_put_and_get()
259 result = (char *) disk_cache_get(cache, blob_key, &size); in test_put_and_get()
261 EXPECT_EQ(size, sizeof(blob)) << "disk_cache_get of existing item (size)"; in test_put_and_get()
272 result = (char *) disk_cache_get(cache, string_key, &size); in test_put_and_get()
274 EXPECT_EQ(size, sizeof(string)) << "2nd disk_cache_get of existing item (size)"; in test_put_and_get()
472 size_t size; test_put_and_get_between_instances() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_debug.c127 fill_random_pattern(uint8_t *dst, pb_size size) in fill_random_pattern() argument
130 while(size--) { in fill_random_pattern()
138 check_random_pattern(const uint8_t *dst, pb_size size, in check_random_pattern() argument
143 *min_ofs = size; in check_random_pattern()
145 for(i = 0; i < size; ++i) { in check_random_pattern()
165 fill_random_pattern(map + buf->underflow_size + buf->base.size, in pb_debug_buffer_fill()
199 overflow = !check_random_pattern(map + buf->underflow_size + buf->base.size, in pb_debug_buffer_check()
203 debug_printf("buffer overflow (size %"PRIu64" plus offset %"PRIu64" to %"PRIu64"%s bytes) detected\n", in pb_debug_buffer_check()
204 buf->base.size, in pb_debug_buffer_check()
220 fill_random_pattern(map + buf->underflow_size + buf->base.size, in pb_debug_buffer_check()
365 pb_debug_manager_create_buffer(struct pb_manager *_mgr, pb_size size, const struct pb_desc *desc) pb_debug_manager_create_buffer() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dparam_build.c28 size_t size; member
52 int size, size_t alloc, int type, in param_push()
63 pd->size = size; in param_push()
77 void *num, size_t size, int type) in param_push_num()
79 OSSL_PARAM_BLD_DEF *pd = param_push(bld, key, size, size, type, 0); in param_push_num()
83 if (size > sizeof(pd->num)) { in param_push_num()
87 memcpy(&pd->num, num, size); in param_push_num()
320 param[i].data_size = pd->size; in param_bld_convert()
51 param_push(OSSL_PARAM_BLD *bld, const char *key, int size, size_t alloc, int type, int secure) param_push() argument
76 param_push_num(OSSL_PARAM_BLD *bld, const char *key, void *num, size_t size, int type) param_push_num() argument
[all...]
/third_party/python/Lib/test/test_capi/
H A Dtest_unicode.py282 wchar, size = unicode_aswidechar('abcdef', 2)
283 self.assertEqual(size, 2)
286 wchar, size = unicode_aswidechar('abc', 3)
287 self.assertEqual(size, 3)
290 wchar, size = unicode_aswidechar('abc', 4)
291 self.assertEqual(size, 3)
294 wchar, size = unicode_aswidechar('abc', 10)
295 self.assertEqual(size, 3)
298 wchar, size = unicode_aswidechar('abc\0def', 20)
299 self.assertEqual(size,
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Dfftwrap.c84 void *spx_fft_init(int size) in spx_fft_init() argument
88 spx_drft_init((struct drft_lookup *)table, size); in spx_fft_init()
137 void *spx_fft_init(int size) in spx_fft_init() argument
140 table->N = size; in spx_fft_init()
141 DftiCreateDescriptor(&table->desc, DFTI_SINGLE, DFTI_REAL, 1, size); in spx_fft_init()
144 DftiSetValue(table->desc, DFTI_FORWARD_SCALE, 1.0f / size); in spx_fft_init()
178 void *spx_fft_init(int size) in spx_fft_init() argument
191 ippsDFTInitAlloc_R_32f(&table->dftSpec, size, IPP_FFT_DIV_FWD_BY_N, hint); in spx_fft_init()
231 void *spx_fft_init(int size) in spx_fft_init() argument
234 table->in = fftwf_malloc(sizeof(float) * (size in spx_fft_init()
304 spx_fft_init(int size) spx_fft_init() argument
[all...]
/third_party/openssl/crypto/
H A Dparam_build.c28 size_t size; member
52 int size, size_t alloc, int type, in param_push()
63 pd->size = size; in param_push()
77 void *num, size_t size, int type) in param_push_num()
79 OSSL_PARAM_BLD_DEF *pd = param_push(bld, key, size, size, type, 0); in param_push_num()
83 if (size > sizeof(pd->num)) { in param_push_num()
87 memcpy(&pd->num, num, size); in param_push_num()
320 param[i].data_size = pd->size; in param_bld_convert()
51 param_push(OSSL_PARAM_BLD *bld, const char *key, int size, size_t alloc, int type, int secure) param_push() argument
76 param_push_num(OSSL_PARAM_BLD *bld, const char *key, void *num, size_t size, int type) param_push_num() argument
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
H A DCMapTable.java574 return this.getCMapBuilders().size(); in numCMaps()
579 if (this.cmapBuilders == null || this.cmapBuilders.size() == 0) { in subDataSizeToSerialize()
584 int size = CMapTable.Offset.encodingRecordStart.offset + this.cmapBuilders.size() in subDataSizeToSerialize()
587 // calculate size of each table in subDataSizeToSerialize()
590 size += Math.abs(cmapSize); in subDataSizeToSerialize()
593 return variable ? -size : size; in subDataSizeToSerialize()
612 int size = newData.writeUShort(CMapTable.Offset.version.offset, this.version()); in subSerialize()
613 size in subSerialize()
[all...]
/third_party/skia/src/shaders/
H A DSkPictureShader.cpp184 SkSize size; in Make()
186 if (!m.decomposeScale(&size, nullptr)) { in Make()
187 size = {1, 1}; in Make()
189 size.fWidth *= bounds.width(); in Make()
190 size.fHeight *= bounds.height(); in Make()
192 // Clamp the tile size to about 4M pixels in Make()
194 SkScalar tileArea = size.width() * size.height(); in Make()
197 size.set(size in Make()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DDeviceLostTests.cpp143 entry.size = 0; in TEST_P()
221 descriptor.size.width = 4; in TEST_P()
222 descriptor.size.height = 4; in TEST_P()
223 descriptor.size.depthOrArrayLayers = 1; in TEST_P()
241 bufferDescriptor.size = sizeof(float); in TEST_P()
249 bufferDescriptor.size = 4; in TEST_P()
262 bufferDescriptor.size = 4; in TEST_P()
274 bufferDescriptor.size = sizeof(float); in TEST_P()
286 bufferDescriptor.size = sizeof(float); in TEST_P()
297 bufferDescriptor.size in TEST_P()
[all...]
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcmanag.c39 FT_Size size = NULL; in ftc_scaler_lookup_size() local
47 error = FT_New_Size( face, &size ); in ftc_scaler_lookup_size()
51 FT_Activate_Size( size ); in ftc_scaler_lookup_size()
63 FT_Done_Size( size ); in ftc_scaler_lookup_size()
64 size = NULL; in ftc_scaler_lookup_size()
68 *asize = size; in ftc_scaler_lookup_size()
76 FT_Size size; member
89 FT_Size size = node->size; in ftc_size_node_done() local
93 if ( size ) in ftc_size_node_done()
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUnknownFieldSetLite.java91 /** The lazily computed serialized size of the set. */
243 int size = memoizedSerializedSize; in getSerializedSizeAsMessageSet()
244 if (size != -1) { in getSerializedSizeAsMessageSet()
245 return size; in getSerializedSizeAsMessageSet()
248 size = 0; in getSerializedSizeAsMessageSet()
252 size += in getSerializedSizeAsMessageSet()
256 memoizedSerializedSize = size; in getSerializedSizeAsMessageSet()
258 return size; in getSerializedSizeAsMessageSet()
267 int size = memoizedSerializedSize; in getSerializedSize()
268 if (size ! in getSerializedSize()
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fShaderTextureSizeTests.cpp21 * \brief Multisample texture size tests
92 void createTexture (const tcu::IVec3& size);
94 void runShader (tcu::Surface& dst, const tcu::IVec3& size);
174 TCU_THROW(NotSupportedError, "rendertarget size must be at least 1x1");
272 m_testCtx.getLog() << tcu::TestLog::Message << "\nIteration " << (m_iteration+1) << " / " << (int)m_iterations.size() << tcu::TestLog::EndMessage;
276 // set texture size
280 // query texture size
286 m_testCtx.getLog() << tcu::TestLog::Message << "Got GL_OUT_OF_MEMORY, skipping this size" << tcu::TestLog::EndMessage;
307 if (++m_iteration < (int)m_iterations.size())
313 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid texture size");
[all...]
/third_party/protobuf/php/ext/google/protobuf/
H A Dphp-upb.h58 #define UPB_ALIGN_UP(size, align) (((size) + (align) - 1) / (align) * (align))
59 #define UPB_ALIGN_DOWN(size, align) ((size) / (align) * (align))
60 #define UPB_ALIGN_MALLOC(size) UPB_ALIGN_UP(size, 16)
267 size_t size; member
270 UPB_INLINE upb_strview upb_strview_make(const char *data, size_t size) { in upb_strview_make() argument
273 ret.size = size; in upb_strview_make()
311 upb_malloc(upb_alloc *alloc, size_t size) upb_malloc() argument
316 upb_realloc(upb_alloc *alloc, void *ptr, size_t oldsize, size_t size) upb_realloc() argument
336 upb_gmalloc(size_t size) upb_gmalloc() argument
340 upb_grealloc(void *ptr, size_t oldsize, size_t size) upb_grealloc() argument
387 upb_arena_malloc(upb_arena *a, size_t size) upb_arena_malloc() argument
401 upb_arena_realloc(upb_arena *a, void *ptr, size_t oldsize, size_t size) upb_arena_realloc() argument
981 uint16_t size; global() member
1102 size_t size; /* Measured in elements. */ global() member
1125 _upb_array_reserve(upb_array *arr, size_t size, upb_arena *arena) _upb_array_reserve() argument
1131 _upb_array_resize(upb_array *arr, size_t size, upb_arena *arena) _upb_array_resize() argument
1138 _upb_array_accessor(const void *msg, size_t ofs, size_t *size) _upb_array_accessor() argument
1150 _upb_array_mutable_accessor(void *msg, size_t ofs, size_t *size) _upb_array_mutable_accessor() argument
1162 _upb_array_resize_accessor(void *msg, size_t ofs, size_t size, upb_fieldtype_t type, upb_arena *arena) _upb_array_resize_accessor() argument
1232 _upb_map_tokey(const void *key, size_t size) _upb_map_tokey() argument
1240 _upb_map_fromkey(upb_strview key, void* out, size_t size) _upb_map_fromkey() argument
1248 _upb_map_tovalue(const void *val, size_t size, upb_arena *a) _upb_map_tovalue() argument
1261 _upb_map_fromvalue(upb_value val, void* out, size_t size) _upb_map_fromvalue() argument
1364 _upb_msg_map_key(const void* msg, void* key, size_t size) _upb_msg_map_key() argument
1373 _upb_msg_map_value(const void* msg, void* val, size_t size) _upb_msg_map_value() argument
1380 _upb_msg_map_set_value(void* msg, const void* val, size_t size) _upb_msg_map_set_value() argument
1589 google_protobuf_FileDescriptorSet_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorSet_parse() argument
1620 google_protobuf_FileDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileDescriptorProto_parse() argument
1777 google_protobuf_DescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_parse() argument
1930 google_protobuf_DescriptorProto_ExtensionRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_parse() argument
1973 google_protobuf_DescriptorProto_ReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_DescriptorProto_ReservedRange_parse() argument
2001 google_protobuf_ExtensionRangeOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ExtensionRangeOptions_parse() argument
2032 google_protobuf_FieldDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldDescriptorProto_parse() argument
2123 google_protobuf_OneofDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofDescriptorProto_parse() argument
2160 google_protobuf_EnumDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_parse() argument
2238 google_protobuf_EnumDescriptorProto_EnumReservedRange_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumDescriptorProto_EnumReservedRange_parse() argument
2266 google_protobuf_EnumValueDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_parse() argument
2309 google_protobuf_ServiceDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceDescriptorProto_parse() argument
2361 google_protobuf_MethodDescriptorProto_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodDescriptorProto_parse() argument
2422 google_protobuf_FileOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FileOptions_parse() argument
2573 google_protobuf_MessageOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MessageOptions_parse() argument
2628 google_protobuf_FieldOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_FieldOptions_parse() argument
2695 google_protobuf_OneofOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_OneofOptions_parse() argument
2726 google_protobuf_EnumOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumOptions_parse() argument
2769 google_protobuf_EnumValueOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_EnumValueOptions_parse() argument
2806 google_protobuf_ServiceOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_ServiceOptions_parse() argument
2843 google_protobuf_MethodOptions_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_MethodOptions_parse() argument
2886 google_protobuf_UninterpretedOption_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_parse() argument
2953 google_protobuf_UninterpretedOption_NamePart_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_UninterpretedOption_NamePart_parse() argument
2981 google_protobuf_SourceCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_parse() argument
3012 google_protobuf_SourceCodeInfo_Location_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_parse() argument
3073 google_protobuf_GeneratedCodeInfo_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_parse() argument
3104 google_protobuf_GeneratedCodeInfo_Annotation_parse(const char *buf, size_t size, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_parse() argument
[all...]
/drivers/external_device_manager/frameworks/ddk/usb/
H A Dusb_ddk_api.cpp172 if (*dataLen < dataTmp.size()) { in OH_Usb_SendControlReadRequest()
177 if (memcpy_s(data, *dataLen, dataTmp.data(), dataTmp.size()) != 0) { in OH_Usb_SendControlReadRequest()
181 *dataLen = dataTmp.size(); in OH_Usb_SendControlReadRequest()
217 *tmpSetUp, devMmap->size, devMmap->offset, devMmap->bufferLength, devMmap->transferedLength); in OH_Usb_SendPipeRequest()
233 std::vector<uint8_t> address = std::vector<uint8_t>(ashmem->address, ashmem->address + ashmem->size); in OH_Usb_SendPipeRequestWithAshmem()
234 OHOS::HDI::Usb::Ddk::V1_0::UsbAshmem usbAshmem = {ashmem->ashmemFd, address, ashmem->size, 0, ashmem->size, 0}; in OH_Usb_SendPipeRequestWithAshmem()
238 int32_t OH_Usb_CreateDeviceMemMap(uint64_t deviceId, size_t size, UsbDeviceMemMap **devMmap) in OH_Usb_CreateDeviceMemMap() argument
251 ftruncate(fd, size); in OH_Usb_CreateDeviceMemMap()
253 auto buffer = static_cast<uint8_t *>(mmap(nullptr, size, PROT_REA in OH_Usb_CreateDeviceMemMap()
[all...]
/third_party/ffmpeg/libavformat/
H A Dmmf.c58 /* Copy of end_tag() from avienc.c, but for big-endian chunk size */
148 int64_t pos, size; in mmf_write_trailer() local
158 size = pos - mmf->awapos; in mmf_write_trailer()
166 gatetime = size * 500 / s->streams[0]->codecpar->sample_rate; in mmf_write_trailer()
201 int64_t size; in mmf_read_header() local
210 for (;; avio_skip(pb, size)) { in mmf_read_header()
212 size = avio_rb32(pb); in mmf_read_header()
243 for (;; avio_skip(pb, size)) { in mmf_read_header()
245 size = avio_rb32(pb); in mmf_read_header()
258 mmf->data_end = avio_tell(pb) + size; in mmf_read_header()
282 int64_t left, size; mmf_read_packet() local
[all...]
/third_party/googletest/googlemock/src/
H A Dgmock-matchers.cc56 if (param_values.size() >= 1) { in FormatMatcherDescription()
157 for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { in Compute()
291 if (matcher_describers_.size() == 1) { in DescribeToImpl()
296 *os << "has " << Elements(matcher_describers_.size()) in DescribeToImpl()
308 for (size_t i = 0; i != matcher_describers_.size(); ++i) { in DescribeToImpl()
332 if (matcher_describers_.size() == 1) { in DescribeNegationToImpl()
338 *os << "doesn't have " << Elements(matcher_describers_.size()) in DescribeNegationToImpl()
349 for (size_t i = 0; i != matcher_describers_.size(); ++i) { in DescribeNegationToImpl()
405 for (size_t mi = 0; mi < matcher_matched.size(); ++mi) { in VerifyMatchMatrix()
423 for (size_t ei = 0; ei < element_matched.size(); in VerifyMatchMatrix()
[all...]
/third_party/lzma/Java/SevenZip/
H A DLzmaBench.java164 public int size() in size() method in LzmaBench.MyOutputStream
176 public MyInputStream(byte[] buffer, int size) in MyInputStream() argument
179 _size = size; in MyInputStream()
213 static int GetLogSize(int size) in GetLogSize() argument
217 if (size <= ((1) << i) + (j << (i - kSubBits))) in GetLogSize()
236 static long GetCompressRating(int dictionarySize, long elapsedTime, long size) in GetCompressRating() argument
240 long numCommands = (long)(size) * numCommandsForOne; in GetCompressRating()
278 long size, in PrintResults()
281 long speed = MyMultDiv64(size, elapsedTime); in PrintResults()
286 rating = GetDecompressRating(elapsedTime, size, secondSiz in PrintResults()
275 PrintResults( int dictionarySize, long elapsedTime, long size, boolean decompressMode, long secondSize) PrintResults() argument
[all...]
/third_party/node/test/cctest/
H A Dtest_aliased_buffer.cc11 for (size_t i = 0, j = buf->size(); i < buf->size(); i++, j--) { in CreateOracleValues()
20 for (size_t i = 0; i < oracle.size(); i++) { in WriteViaOperator()
29 for (size_t i = 0; i < oracle.size(); i++) { in WriteViaSetValue()
40 for (size_t i = 0; i < oracle.size(); i++) { in ReadAndValidate()
47 // validate size of JS Buffer in ReadAndValidate()
48 EXPECT_TRUE(aliasedBuffer->GetJSArray()->Length() == oracle.size()); in ReadAndValidate()
51 (oracle.size() * sizeof(NativeT))); in ReadAndValidate()
57 for (size_t i = 0; i < oracle.size(); i++) { in ReadAndValidate()
77 const size_t size in ReadWriteTest() local
209 const size_t size = 10; TEST_F() local
[all...]
/third_party/musl/porting/liteos_a/user/src/thread/
H A Dpthread_create.c237 size_t size, guard; in __pthread_create() local
259 size = attr._a_stacksize; in __pthread_create()
261 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
265 if (need < size/8 && need < 2048) { in __pthread_create()
270 size = ROUND(need); in __pthread_create()
275 size = guard + ROUND(attr._a_stacksize in __pthread_create()
281 map = __mmap(0, size, PROT_READ|PROT_WRITE|PROT_NONE, MAP_PRIVATE|MAP_ANON, -1, 0); in __pthread_create()
283 if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE) in __pthread_create()
285 __munmap(map, size); in __pthread_create()
289 map = __mmap(0, size, PROT_REA in __pthread_create()
[all...]
/third_party/musl/src/thread/liteos_a/
H A Dpthread_create.c237 size_t size, guard; in __pthread_create() local
259 size = attr._a_stacksize; in __pthread_create()
261 stack_limit = (void *)(attr._a_stackaddr - size); in __pthread_create()
265 if (need < size / 8 && need < 2048) { in __pthread_create()
270 size = ROUND(need); in __pthread_create()
275 size = guard + ROUND(attr._a_stacksize in __pthread_create()
281 map = __mmap(0, size, PROT_READ | PROT_WRITE | PROT_NONE, MAP_PRIVATE | MAP_ANON, -1, 0); in __pthread_create()
283 if (__mprotect(map+guard, size-guard, PROT_READ|PROT_WRITE) in __pthread_create()
285 __munmap(map, size); in __pthread_create()
289 map = __mmap(0, size, PROT_REA in __pthread_create()
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares__htable.c42 unsigned int size; member
69 unsigned int size, in ares__htable_buckets_destroy()
78 for (i = 0; i < size; i++) { in ares__htable_buckets_destroy()
98 ares__htable_buckets_destroy(htable->buckets, htable->size, ARES_TRUE); in ares__htable_destroy()
124 htable->size = ARES__HTABLE_MIN_BUCKETS; in ares__htable_create()
125 htable->buckets = ares_malloc_zero(sizeof(*htable->buckets) * htable->size); in ares__htable_create()
155 for (i = 0; i < htable->size; i++) { in ares__htable_all_buckets()
168 * the hash of the function reduced to the size of the bucket list.
169 * We are doing "hash & (size - 1)" since we are guaranteeing a power of
170 * 2 for size
68 ares__htable_buckets_destroy(ares__llist_t **buckets, unsigned int size, ares_bool_t destroy_vals) ares__htable_buckets_destroy() argument
[all...]
/third_party/libfuse/example/
H A Dnotify_store_retrieve.c175 size_t size; member
181 size_t oldsize = b->size; in dirbuf_add()
182 b->size += fuse_add_direntry(req, NULL, 0, name, NULL, 0); in dirbuf_add()
183 b->p = (char *) realloc(b->p, b->size); in dirbuf_add()
186 fuse_add_direntry(req, b->p + oldsize, b->size - oldsize, name, &stbuf, in dirbuf_add()
187 b->size); in dirbuf_add()
201 static void tfs_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, in tfs_readdir() argument
212 reply_buf_limited(req, b.p, b.size, off, size); in tfs_readdir()
237 static void tfs_read(fuse_req_t req, fuse_ino_t ino, size_t size, in tfs_read() argument
[all...]
/third_party/node/deps/v8/src/asmjs/
H A Dasm-types.cc149 for (size_t ii = 0; ii < args_.size(); ++ii) { in Name()
151 if (ii != args_.size() - 1) { in Name()
181 if (args.size() != 1) { in CanBeInvokedWith()
209 if (args.size() < 2) {
213 for (size_t ii = 0; ii < args.size(); ++ii) {
248 if (args_.size() != that->args_.size()) { in IsA()
252 for (size_t ii = 0; ii < args_.size(); ++ii) { in IsA()
267 if (args_.size() != args.size()) { in CanBeInvokedWith()
[all...]
/third_party/node/deps/v8/src/heap/
H A Dmark-compact-inl.h96 int size = TBodyDescriptor::SizeOf(map, object); in VisitJSObjectSubclass() local
97 TBodyDescriptor::IterateBody(map, object, size, this); in VisitJSObjectSubclass()
98 return size; in VisitJSObjectSubclass()
106 int size = T::SizeFor(object.length()); in VisitLeftTrimmableArray() local
108 T::BodyDescriptor::IterateBody(map, object, size, this); in VisitLeftTrimmableArray()
109 return size; in VisitLeftTrimmableArray()
165 int size = 0; in AdvanceToNextValidObject() local
201 size = black_object.SizeFromMap(map); in AdvanceToNextValidObject()
202 CHECK_LE(addr + size, chunk_->area_end()); in AdvanceToNextValidObject()
203 Address end = addr + size in AdvanceToNextValidObject()
[all...]

Completed in 25 milliseconds

1...<<71727374757677787980>>...858