/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstacksize/ |
D | 2-1.c | 41 size_t ssize; in thread_func() local 48 if ((rc = pthread_attr_getstacksize(&attr, &ssize)) != 0) { in thread_func() 53 if (ssize < stack_size) { in thread_func() 55 "size (%zu < %zu)\n", ssize, stack_size); in thread_func() 66 size_t ssize; in main() local 98 rc = pthread_attr_getstacksize(&attr, &ssize); in main()
|
D | 1-1.c | 43 size_t ssize; in main() local 71 rc = pthread_attr_getstacksize(&attr, &ssize); in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setstack/ |
D | 2-1.c | 42 size_t ssize; in thread_func() local 49 if ((rc = pthread_attr_getstack(&attr, &saddr, &ssize)) != 0) { in thread_func() 53 if (ssize != stack_size || saddr != stack_addr) { in thread_func() 66 size_t ssize; in main() local 105 if ((rc = pthread_attr_getstack(&attr, &saddr, &ssize)) != 0) { in main()
|
D | 4-1.c | 57 size_t ssize; in main() local 92 rc = pthread_attr_getstack(&attr, &saddr, &ssize); in main() 99 if (ssize != stack_size || saddr != stack_addr) { in main()
|
D | 1-1.c | 45 size_t ssize; in main() local 80 rc = pthread_attr_getstack(&attr, &saddr, &ssize); in main()
|
/third_party/skia/src/core/ |
D | SkPicture.cpp | 180 int32_t ssize; in MakeFromStream() local 181 if (!stream->readS32(&ssize) || ssize >= 0 || !procs.fPictureProc) { in MakeFromStream() 184 size_t size = sk_negate_to_size_t(ssize); in MakeFromStream() 203 int32_t ssize = buffer.read32(); in MakeFromBuffer() local 204 if (ssize < 0) { in MakeFromBuffer() 209 size_t size = sk_negate_to_size_t(ssize); in MakeFromBuffer() 212 if (ssize != 1) { in MakeFromBuffer()
|
D | SkEnumerate.h | 69 constexpr Iterator end() const { return Iterator{fBeginIndex + this->ssize(), fEnd}; } 72 constexpr ptrdiff_t ssize() const { return std::distance(fBegin, fEnd); } 75 ptrdiff_t deltaEnd = this->ssize() - n; 80 ptrdiff_t deltaBegin = this->ssize() - n;
|
D | SkWriteBuffer.cpp | 190 int32_t ssize = SkToS32(size); in writeTypeface() local 191 fWriter.write32(-ssize); // negative to signal custom in writeTypeface()
|
/third_party/gstreamer/gstplugins_good/gst/rtp/ |
D | gstrtpceltpay.c | 139 guint ssize, guint size, GstClockTime duration) in gst_rtp_celt_pay_add_queued() argument 142 rtpceltpay->sbytes += ssize; in gst_rtp_celt_pay_add_queued() 395 guint i, ssize, packet_len; in gst_rtp_celt_pay_handle_buffer() local 427 ssize = 1; in gst_rtp_celt_pay_handle_buffer() 429 ssize++; in gst_rtp_celt_pay_handle_buffer() 431 GST_DEBUG_OBJECT (rtpceltpay, "bytes for size %u", ssize); in gst_rtp_celt_pay_handle_buffer() 434 payload_len = ssize + map.size + rtpceltpay->bytes + rtpceltpay->sbytes; in gst_rtp_celt_pay_handle_buffer() 448 gst_rtp_celt_pay_add_queued (rtpceltpay, buffer, ssize, map.size, duration); in gst_rtp_celt_pay_handle_buffer()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | runlist.c | 222 runlist_element *src, int ssize, int loc) in ntfs_rl_append() argument 236 right = ntfs_rl_are_mergeable(src + ssize - 1, dst + loc + 1); in ntfs_rl_append() 239 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - right); in ntfs_rl_append() 249 __ntfs_rl_merge(src + ssize - 1, dst + loc + 1); in ntfs_rl_append() 252 marker = loc + ssize + 1; in ntfs_rl_append() 256 ntfs_rl_mc(dst, loc + 1, src, 0, ssize); in ntfs_rl_append() 289 runlist_element *src, int ssize, int loc) in ntfs_rl_insert() argument 322 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - left + disc); in ntfs_rl_insert() 339 marker = loc + ssize - left + disc; in ntfs_rl_insert() 343 ntfs_rl_mc(dst, loc + disc, src, left, ssize - left); in ntfs_rl_insert() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstack/ |
D | 1-1.c | 35 size_t ssize; in main() local 70 rc = pthread_attr_getstack(&attr, &saddr, &ssize); in main() 75 printf("saddr = %p, ssize = %zu\n", saddr, ssize); in main()
|
/third_party/python/Modules/ |
D | ossaudiodev.c | 613 _ssize(oss_audio_t *self, int *nchannels, int *ssize) in _ssize() argument 626 *ssize = 1; /* 8 bit formats: 1 byte */ in _ssize() 632 *ssize = 2; /* 16 bit formats: 2 byte */ in _ssize() 651 int nchannels=0, ssize=0; in oss_bufsize() local 656 if (_ssize(self, &nchannels, &ssize) < 0 || !nchannels || !ssize) { in oss_bufsize() 664 return PyLong_FromLong((ai.fragstotal * ai.fragsize) / (nchannels * ssize)); in oss_bufsize() 673 int nchannels=0, ssize=0; in oss_obufcount() local 678 if (_ssize(self, &nchannels, &ssize) < 0 || !nchannels || !ssize) { in oss_obufcount() 687 (ssize * nchannels)); in oss_obufcount() 696 int nchannels=0, ssize=0; in oss_obuffree() local [all …]
|
/third_party/node/deps/v8/src/base/platform/ |
D | platform-freebsd.cc | 70 const size_t ssize = map->kve_structsize; in GetSharedLibraryAddresses() local 73 CHECK_NE(0, ssize); in GetSharedLibraryAddresses() 89 start += ssize; in GetSharedLibraryAddresses()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdmaster.c | 283 int ssize = cinfo->_min_DCT_scaled_size; in jpeg_calc_output_dimensions() local 284 while (ssize < DCTSIZE && in jpeg_calc_output_dimensions() 286 (compptr->h_samp_factor * ssize * 2) == 0) && in jpeg_calc_output_dimensions() 288 (compptr->v_samp_factor * ssize * 2) == 0)) { in jpeg_calc_output_dimensions() 289 ssize = ssize * 2; in jpeg_calc_output_dimensions() 292 compptr->DCT_h_scaled_size = compptr->DCT_v_scaled_size = ssize; in jpeg_calc_output_dimensions() 294 compptr->DCT_scaled_size = ssize; in jpeg_calc_output_dimensions()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getstacksize/ |
D | 1-1.c | 34 size_t ssize; in main() local 68 rc = pthread_attr_getstacksize(&attr, &ssize); in main()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | tags.c | 366 gint prefix, ssize; in gst_tag_freeform_string_to_utf8() local 370 ssize = GST_ROUND_DOWN_4 (size - 4); in gst_tag_freeform_string_to_utf8() 384 ssize = GST_ROUND_DOWN_2 (size - 2); in gst_tag_freeform_string_to_utf8() 399 g_convert (data + prefix, ssize, "UTF-8", c, &bytes_read, NULL, in gst_tag_freeform_string_to_utf8() 401 if (bytes_read == ssize) in gst_tag_freeform_string_to_utf8()
|
/third_party/ffmpeg/libavformat/ |
D | moflex.c | 172 unsigned type, ssize, codec_id = 0; in moflex_read_sync() local 178 read_var_byte(s, &ssize); in moflex_read_sync() 182 if (ssize > 0) in moflex_read_sync() 183 avio_skip(pb, ssize); in moflex_read_sync()
|
/third_party/astc-encoder/Source/ |
D | astcenc_weight_align.cpp | 226 vfloat ssize = 1.0f / rcp_stepsize; in compute_lowest_and_highest_weight() local 227 vfloat errscale = ssize * ssize; in compute_lowest_and_highest_weight() 410 vfloat ssize = 1.0f / rcp_stepsize; in compute_lowest_and_highest_weight_lwc() local 411 vfloat errscale = ssize * ssize; in compute_lowest_and_highest_weight_lwc()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_route.c | 1074 long csize = 0, ssize = 0; in _snd_pcm_route_determine_ttable() local 1105 if (schannel + 1 > ssize) in _snd_pcm_route_determine_ttable() 1106 ssize = schannel + 1; in _snd_pcm_route_determine_ttable() 1109 if (csize == 0 || ssize == 0) { in _snd_pcm_route_determine_ttable() 1114 *tt_ssize = ssize; in _snd_pcm_route_determine_ttable() 1302 unsigned int csize, ssize; in _snd_pcm_route_open() local 1390 err = _snd_pcm_route_determine_ttable(tt, &csize, &ssize, chmap); in _snd_pcm_route_open() 1397 ttable = malloc(csize * ssize * sizeof(snd_pcm_route_ttable_entry_t)); in _snd_pcm_route_open() 1404 err = _snd_pcm_route_load_ttable(tt, ttable, csize, ssize, in _snd_pcm_route_open() 1415 ttable, ssize, in _snd_pcm_route_open()
|
/third_party/elfutils/tests/ |
D | backtrace.c | 424 ssize_t ssize = readlink (selfpathname, data.selfpath, in exec_dump() local 427 assert (ssize > 0 && ssize < (ssize_t) sizeof (data.selfpath)); in exec_dump() 428 data.selfpath[ssize] = '\0'; in exec_dump()
|
/third_party/ltp/lib/ |
D | tst_test.c | 198 int ret, size = sizeof(buf), ssize, int_errno, buflen; in print_result() local 253 ssize = size - 2; in print_result() 255 str += MIN(ret, ssize); in print_result() 256 size -= MIN(ret, ssize); in print_result() 257 if (ret >= ssize) { in print_result() 261 ssize = size - 2; in print_result() 263 str += MIN(ret, ssize); in print_result() 264 size -= MIN(ret, ssize); in print_result() 265 if (ret >= ssize) in print_result()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | regcomp.c | 197 sopno ssize; /* malloced strip size (allocated) */ member 322 p->ssize = len/(size_t)2*(size_t)3 + (size_t)1; /* ugh */ in llvm_regcomp() 323 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp() 1459 enlarge(p, p->ssize + len); /* this many unexpected additions */ in dupl() 1460 assert(p->ssize >= p->slen + len); in dupl() 1485 if (p->slen >= p->ssize) in doemit() 1486 enlarge(p, (p->ssize+1) / 2 * 3); /* +50% */ in doemit() 1487 assert(p->slen < p->ssize); in doemit() 1550 if (p->ssize >= size) in enlarge() 1564 p->ssize = size; in enlarge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regcomp.c | 69 sopno ssize; /* malloced strip size (allocated) */ member 194 p->ssize = len/(size_t)2*(size_t)3 + (size_t)1; /* ugh */ in llvm_regcomp() 195 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp() 1331 enlarge(p, p->ssize + len); /* this many unexpected additions */ in dupl() 1332 assert(p->ssize >= p->slen + len); in dupl() 1357 if (p->slen >= p->ssize) in doemit() 1358 enlarge(p, (p->ssize+1) / 2 * 3); /* +50% */ in doemit() 1359 assert(p->slen < p->ssize); in doemit() 1422 if (p->ssize >= size) in enlarge() 1436 p->ssize = size; in enlarge()
|
/third_party/python/PC/ |
D | _msi.c | 678 DWORD ssize = sizeof(sbuf); in _msi_SummaryInformation_GetProperty_impl() local 681 &fval, sval, &ssize); in _msi_SummaryInformation_GetProperty_impl() 683 ssize++; in _msi_SummaryInformation_GetProperty_impl() 684 sval = malloc(ssize); in _msi_SummaryInformation_GetProperty_impl() 689 &fval, sval, &ssize); in _msi_SummaryInformation_GetProperty_impl() 705 result = PyBytes_FromStringAndSize(sval, ssize); in _msi_SummaryInformation_GetProperty_impl()
|
/third_party/python/Lib/test/ |
D | test_ossaudiodev.py | 45 def play_sound_file(self, data, rate, ssize, nchannels): argument 76 expected_time = float(len(data)) / (ssize/8) / nchannels / rate
|