/third_party/elfutils/libdw/ |
H A D | dwarf_getcfi_elf.c | 140 size_t vsize, dmax; in getcfi_gnu_eh_frame() local 152 vsize = encoded_value_size (data, ehdr->e_ident, search_table_encoding, in getcfi_gnu_eh_frame() 156 || vsize == 0 in getcfi_gnu_eh_frame() 157 || search_table_entries > (dmax / vsize) / 2)) in getcfi_gnu_eh_frame() 236 size_t vsize, dmax; in getcfi_scn_eh_frame() local 248 vsize = encoded_value_size (hdr_data, ehdr->e_ident, in getcfi_scn_eh_frame() 253 || vsize == 0 in getcfi_scn_eh_frame() 254 || cfi->search_table_entries > (dmax / vsize) / 2)) in getcfi_scn_eh_frame()
|
/third_party/ffmpeg/libavformat/ |
H A D | nsvdec.c | 410 av_log(s, AV_LOG_TRACE, "NSV NSVs vsize %dx%d\n", vwidth, vheight); in nsv_parse_NSVs_header() 529 uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */ in nsv_read_chunk() 530 uint32_t vsize; in nsv_read_chunk() local 554 vsize = avio_rl16(pb); in nsv_read_chunk() 556 vsize = (vsize << 4) | (auxcount >> 4); in nsv_read_chunk() 558 av_log(s, AV_LOG_TRACE, "NSV CHUNK %d aux, %"PRIu32" bytes video, %d bytes audio\n", auxcount, vsize, asize); in nsv_read_chunk() 565 vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming brain-dead */ in nsv_read_chunk() 570 if (!vsize && !asize) { in nsv_read_chunk() 581 if (vsize in nsv_read_chunk() 717 int vsize = AV_RL24(p->buf+i+19) >> 4; nsv_probe() local [all...] |
H A D | mvdec.c | 397 uint32_t vsize = avio_rb32(pb); in mv_read_header() local 405 av_add_index_entry(vst, pos + asize, i, vsize, 0, AVINDEX_KEYFRAME); in mv_read_header()
|
/third_party/python/Lib/test/ |
H A D | test_sys.py | 1274 vsize = test.support.calcvobjsize 1277 self.assertEqual(sys.getsizeof(True), vsize('') + self.longdigit) 1279 self.assertEqual(sys.getsizeof([]), vsize('Pn') + gc_header_size) 1321 vsize = test.support.calcvobjsize 1324 check(True, vsize('') + self.longdigit) 1325 check(False, vsize('') + self.longdigit) 1334 check(x, vsize('n2Pi') + x.__alloc__()) 1338 check(b'', vsize('n') + 1) 1339 check(b'x' * 10, vsize('n') + 11) 1421 check(sys.float_info, vsize('') [all...] |
H A D | test_buffer.py | 2502 vsize = support.calcvobjsize 2507 check(memoryview(b''), vsize(base_struct + 1 * per_dim)) 2509 check(memoryview(a), vsize(base_struct + 2 * per_dim)) 2511 check(memoryview(a), vsize(base_struct + 3 * per_dim))
|
/third_party/ltp/testcases/kernel/syscalls/setsockopt/ |
H A D | setsockopt07.c | 65 socklen_t vsize = sizeof(val); in run() local 94 SAFE_GETSOCKOPT(sock, SOL_PACKET, PACKET_RESERVE, &val, &vsize); in run()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe.h | 125 const uint vsize = sizeof(struct vertex_header) in dup_vert() local 127 memcpy(tmp, vert, vsize); in dup_vert()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | locid.cpp | 303 int32_t vsize = 0; in Locale() local 342 vsize = (int32_t)uprv_strlen(newVariant); in Locale() 343 if ( vsize < 0 || vsize > ULOC_STRING_LIMIT ) { // int32 wrap in Locale() 347 while( (vsize>1) && (newVariant[vsize-1] == SEP_CHAR) ) in Locale() 349 vsize--; in Locale() 353 if( vsize > 0 ) in Locale() 355 size += vsize; in Locale() 359 if ( vsize > in Locale() [all...] |
/third_party/node/deps/npm/node_modules/fastest-levenshtein/ |
H A D | mod.js | 44 var vsize = Math.ceil(m / 32); 50 for (; j < vsize - 1; j++) {
|
/third_party/icu/icu4c/source/common/ |
H A D | locid.cpp | 302 int32_t vsize = 0; in Locale() local 339 vsize = (int32_t)uprv_strlen(newVariant); in Locale() 340 if ( vsize < 0 || vsize > ULOC_STRING_LIMIT ) { // int32 wrap in Locale() 344 while( (vsize>1) && (newVariant[vsize-1] == SEP_CHAR) ) in Locale() 346 vsize--; in Locale() 363 if ( ( vsize != 0 ) || (csize != 0) ) // at least: __v in Locale() 373 if ( vsize != 0) in Locale() 376 .append(newVariant, vsize, statu in Locale() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | locid.cpp | 302 int32_t vsize = 0; in Locale() local 339 vsize = (int32_t)uprv_strlen(newVariant); in Locale() 340 if ( vsize < 0 || vsize > ULOC_STRING_LIMIT ) { // int32 wrap in Locale() 344 while( (vsize>1) && (newVariant[vsize-1] == SEP_CHAR) ) in Locale() 346 vsize--; in Locale() 363 if ( ( vsize != 0 ) || (csize != 0) ) // at least: __v in Locale() 373 if ( vsize != 0) in Locale() 376 .append(newVariant, vsize, statu in Locale() [all...] |
/third_party/python/Objects/ |
H A D | structseq.c | 58 Py_ssize_t vsize = VISIBLE_SIZE_TP(type); in PyStructSequence_New() local 59 if (vsize < 0) { in PyStructSequence_New() 68 Py_SET_SIZE(obj, vsize); in PyStructSequence_New()
|
/third_party/pulseaudio/scripts/ |
H A D | benchmark_memory_usage.sh | 105 _vmsize=`ps -o vsize= $_pid`
|
/third_party/mksh/ |
H A D | expr.c | 665 size_t vsize; in tempvar() local 667 vsize = strlen(vname) + 1; in tempvar() 668 vp = alloc(offsetof(struct tbl, name[0]) + vsize, ATEMP); in tempvar() 669 memcpy(vp->name, vname, vsize); in tempvar()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_screen.h | 158 unsigned vsize, unsigned sfsize);
|
H A D | gen4_blorp_exec.h | 55 vs.URBEntryAllocationSize = batch->ice->urb.vsize - 1; in blorp_emit_vs_state()
|
H A D | crocus_state.c | 689 ice->urb.gs_start = ice->urb.nr_vs_entries * ice->urb.vsize; in check_urb_layout() 690 ice->urb.clip_start = ice->urb.gs_start + ice->urb.nr_gs_entries * ice->urb.vsize; in check_urb_layout() 691 ice->urb.sf_start = ice->urb.clip_start + ice->urb.nr_clip_entries * ice->urb.vsize; in check_urb_layout() 701 unsigned vsize, unsigned sfsize) in crocus_calculate_urb_fence() 707 if (vsize < limits[URB_VS].min_entry_size) in crocus_calculate_urb_fence() 708 vsize = limits[URB_VS].min_entry_size; in crocus_calculate_urb_fence() 713 if (ice->urb.vsize < vsize || in crocus_calculate_urb_fence() 716 (ice->urb.constrained && (ice->urb.vsize > vsize || in crocus_calculate_urb_fence() 700 crocus_calculate_urb_fence(struct crocus_batch *batch, unsigned csize, unsigned vsize, unsigned sfsize) crocus_calculate_urb_fence() argument [all...] |
H A D | crocus_blorp.c | 387 ice->urb.vsize = 0; in crocus_blorp_exec()
|
H A D | crocus_context.h | 687 uint32_t vsize; /* vertex size plus header in urb registers */ member
|
/third_party/alsa-utils/aplay/ |
H A D | aplay.c | 3372 size_t vsize; local 3380 vsize = chunk_bytes / channels; 3386 bufs[channel] = audiobuf + vsize * channel; 3391 if (expected > vsize) 3392 expected = vsize; 3428 size_t vsize; local 3434 vsize = chunk_bytes / channels; 3437 bufs[channel] = audiobuf + vsize * channel;
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 370 % (We lessened \vsize for it in \oddfootingyyy.) 3369 \global\advance\vsize by -12pt 5129 % Double the \vsize as well. (We don't need a separate register here, 5130 % since nobody clobbers \vsize.) 5131 \vsize = 2\vsize 5142 \dimen@ = \vsize 5210 % \pagegoal was set to the doubled \vsize above, since we restarted 5212 % typesetting, so reset \pagegoal to the normal \vsize (after the 5213 % \endgroup where \vsize go [all...] |