Home
last modified time | relevance | path

Searched refs:toShift (Results 1 – 25 of 68) sorted by relevance

123

/dports/net/cjdns/cjdns-cjdns-v21.1/wire/
H A DMessage.h77 if (amount > 0 && toShift->padding < amount) { in Er_DEFUN()
79 amount, toShift->length); in Er_DEFUN()
80 } else if (toShift->length < (-amount)) { in Er_DEFUN()
81 Er_raise(toShift->alloc, "buffer underflow"); in Er_DEFUN()
84 toShift->length += amount; in Er_DEFUN()
85 toShift->capacity += amount; in Er_DEFUN()
86 toShift->bytes -= amount; in Er_DEFUN()
87 toShift->padding -= amount; in Er_DEFUN()
94 Assert_true(toShift->length <= toShift->capacity); in Message_reset()
95 toShift->length = toShift->capacity; in Message_reset()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/common/
H A Dbitstream.h110 const size_t toShift = 64 - n; in getNBits() local
113 return value >> toShift; in getNBits()
115 return (value << toShift) >> toShift; in getNBits()
/dports/games/scummvm/scummvm-2.5.1/common/
H A Dbitstream.h119 const size_t toShift = 64 - n; in getNBits() local
122 return value >> toShift; in getNBits()
124 return (value << toShift) >> toShift; in getNBits()
/dports/devel/icu/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
180 UBool toShift; member
/dports/devel/icu-lx/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
180 UBool toShift; member
/dports/www/firefox/firefox-99.0/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
180 UBool toShift; member
/dports/www/firefox-esr/firefox-91.8.0/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/lang/spidermonkey78/firefox-78.9.0/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/textproc/R-cran-stringi/stringi/src/icu69/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/textproc/R-cran-stringi/stringi/src/icu55/i18n/
H A Dusrchimp.h82 UBool toShift; variable
182 UBool toShift; member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/mail/thunderbird/thunderbird-91.8.0/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/lang/v8/v8-9.6.180.12/third_party/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/www/firefox-legacy/firefox-52.8.0esr/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/lang/spidermonkey60/firefox-60.9.0/intl/icu/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/www/node10/node-v10.24.1/deps/icu-small/source/i18n/
H A Dusrchimp.h84 UBool toShift; variable
184 UBool toShift; member
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/icu4c-57.1/source/i18n/
H A Dusrchimp.h82 UBool toShift; variable
182 UBool toShift; member
/dports/www/firefox-esr/firefox-91.8.0/js/src/vm/
H A DNativeObject.cpp645 uint32_t toShift = count - numShifted; in tryUnshiftDenseElements() local
646 MOZ_ASSERT(toShift <= ObjectElements::MaxShiftedElements, in tryUnshiftDenseElements()
650 if (toShift > unusedCapacity) { in tryUnshiftDenseElements()
656 toShift = std::min(toShift + unusedCapacity / 2, unusedCapacity); in tryUnshiftDenseElements()
660 toShift = ObjectElements::MaxShiftedElements - numShifted; in tryUnshiftDenseElements()
663 MOZ_ASSERT(count <= numShifted + toShift); in tryUnshiftDenseElements()
665 MOZ_ASSERT(toShift <= unusedCapacity); in tryUnshiftDenseElements()
669 setDenseInitializedLength(initLen + toShift); in tryUnshiftDenseElements()
670 for (uint32_t i = 0; i < toShift; i++) { in tryUnshiftDenseElements()
673 moveDenseElements(toShift, 0, initLen); in tryUnshiftDenseElements()
[all …]
/dports/www/firefox/firefox-99.0/js/src/vm/
H A DNativeObject.cpp613 uint32_t toShift = count - numShifted; in tryUnshiftDenseElements() local
614 MOZ_ASSERT(toShift <= ObjectElements::MaxShiftedElements, in tryUnshiftDenseElements()
618 if (toShift > unusedCapacity) { in tryUnshiftDenseElements()
624 toShift = std::min(toShift + unusedCapacity / 2, unusedCapacity); in tryUnshiftDenseElements()
628 toShift = ObjectElements::MaxShiftedElements - numShifted; in tryUnshiftDenseElements()
631 MOZ_ASSERT(count <= numShifted + toShift); in tryUnshiftDenseElements()
633 MOZ_ASSERT(toShift <= unusedCapacity); in tryUnshiftDenseElements()
637 setDenseInitializedLength(initLen + toShift); in tryUnshiftDenseElements()
638 for (uint32_t i = 0; i < toShift; i++) { in tryUnshiftDenseElements()
641 moveDenseElements(toShift, 0, initLen); in tryUnshiftDenseElements()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/vm/
H A DNativeObject.cpp645 uint32_t toShift = count - numShifted; in tryUnshiftDenseElements() local
646 MOZ_ASSERT(toShift <= ObjectElements::MaxShiftedElements, in tryUnshiftDenseElements()
650 if (toShift > unusedCapacity) { in tryUnshiftDenseElements()
656 toShift = std::min(toShift + unusedCapacity / 2, unusedCapacity); in tryUnshiftDenseElements()
660 toShift = ObjectElements::MaxShiftedElements - numShifted; in tryUnshiftDenseElements()
663 MOZ_ASSERT(count <= numShifted + toShift); in tryUnshiftDenseElements()
665 MOZ_ASSERT(toShift <= unusedCapacity); in tryUnshiftDenseElements()
669 setDenseInitializedLength(initLen + toShift); in tryUnshiftDenseElements()
670 for (uint32_t i = 0; i < toShift; i++) { in tryUnshiftDenseElements()
673 moveDenseElements(toShift, 0, initLen); in tryUnshiftDenseElements()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/vm/
H A DNativeObject.cpp713 uint32_t toShift = count - numShifted; in tryUnshiftDenseElements() local
714 MOZ_ASSERT(toShift <= ObjectElements::MaxShiftedElements, in tryUnshiftDenseElements()
718 if (toShift > unusedCapacity) return false; in tryUnshiftDenseElements()
722 toShift = Min(toShift + unusedCapacity / 2, unusedCapacity); in tryUnshiftDenseElements()
726 toShift = ObjectElements::MaxShiftedElements - numShifted; in tryUnshiftDenseElements()
728 MOZ_ASSERT(count <= numShifted + toShift); in tryUnshiftDenseElements()
730 MOZ_ASSERT(toShift <= unusedCapacity); in tryUnshiftDenseElements()
734 setDenseInitializedLength(initLen + toShift); in tryUnshiftDenseElements()
735 for (uint32_t i = 0; i < toShift; i++) in tryUnshiftDenseElements()
737 moveDenseElements(toShift, 0, initLen); in tryUnshiftDenseElements()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/vm/
H A DNativeObject.cpp705 uint32_t toShift = count - numShifted; in tryUnshiftDenseElements() local
706 MOZ_ASSERT(toShift <= ObjectElements::MaxShiftedElements, in tryUnshiftDenseElements()
710 if (toShift > unusedCapacity) { in tryUnshiftDenseElements()
716 toShift = std::min(toShift + unusedCapacity / 2, unusedCapacity); in tryUnshiftDenseElements()
720 toShift = ObjectElements::MaxShiftedElements - numShifted; in tryUnshiftDenseElements()
723 MOZ_ASSERT(count <= numShifted + toShift); in tryUnshiftDenseElements()
725 MOZ_ASSERT(toShift <= unusedCapacity); in tryUnshiftDenseElements()
729 setDenseInitializedLength(initLen + toShift); in tryUnshiftDenseElements()
730 for (uint32_t i = 0; i < toShift; i++) { in tryUnshiftDenseElements()
733 moveDenseElements(toShift, 0, initLen); in tryUnshiftDenseElements()
[all …]
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/reg/include/opencv2/reg/
H A Dmapperpyramid.hpp88 CV_WRAP static Ptr<MapShift> toShift(Ptr<Map> sourceMap) in toShift() function in cv::reg::MapTypeCaster
/dports/www/wt/wt-4.6.1/src/Wt/
H A DWTableView.C1331 std::vector<WModelIndex> toShift; in shiftModelIndexRows() local
1345 toShift.push_back(*it); in shiftModelIndexRows()
1352 for (unsigned i = 0; i < toShift.size(); ++i) { in shiftModelIndexRows()
1354 toShift[i].column(), in shiftModelIndexRows()
1355 toShift[i].parent()); in shiftModelIndexRows()
1369 std::vector<WModelIndex> toShift; in shiftModelIndexColumns() local
1381 toShift.push_back(*it); in shiftModelIndexColumns()
1389 for (unsigned i = 0; i < toShift.size(); ++i) { in shiftModelIndexColumns()
1391 toShift[i].column() + count, in shiftModelIndexColumns()
1392 toShift[i].parent()); in shiftModelIndexColumns()
[all …]

123