Home | History | Annotate | Download | only in objects

Lines Matching refs:result_storage

87       MutableBigInt* result_storage = nullptr);
98 MutableBigInt* result_storage, ExtraDigitsHandling extra_digits,
102 MutableBigInt* result_storage = nullptr);
105 MutableBigInt* result_storage = nullptr);
108 MutableBigInt* result_storage = nullptr);
111 MutableBigInt* result_storage = nullptr);
1163 // {result_storage} is optional; if present, it will be used to store the
1165 // {result_storage} and {x} may refer to the same BigInt for in-place
1169 MutableBigInt* result_storage) {
1181 Handle<MutableBigInt> result(result_storage, isolate);
1182 if (result_storage == nullptr) {
1243 // If {result_storage} is non-nullptr, it will be used for the result and
1246 // {result_storage} may alias {x} or {y} for in-place modification.
1254 // result_storage: [ 0 ][ x3 ][ r2 ][ r1 ][ r0 ]
1257 MutableBigInt* result_storage, ExtraDigitsHandling extra_digits,
1270 Handle<MutableBigInt> result(result_storage, isolate);
1272 if (result_storage == nullptr) {
1275 DCHECK(result_storage->length() >= result_length);
1276 result_length = result_storage->length();
1293 // If {result_storage} is non-nullptr, it will be used for the result,
1295 // {result_storage} may alias {x} or {y} for in-place modification.
1298 MutableBigInt* result_storage) {
1299 return AbsoluteBitwiseOp(isolate, x, y, result_storage, kSkip, kSymmetric,
1303 // If {result_storage} is non-nullptr, it will be used for the result,
1305 // {result_storage} may alias {x} or {y} for in-place modification.
1308 MutableBigInt* result_storage) {
1309 return AbsoluteBitwiseOp(isolate, x, y, result_storage, kCopy, kNotSymmetric,
1313 // If {result_storage} is non-nullptr, it will be used for the result,
1315 // {result_storage} may alias {x} or {y} for in-place modification.
1319 MutableBigInt* result_storage) {
1320 return AbsoluteBitwiseOp(isolate, x, y, result_storage, kCopy, kSymmetric,
1324 // If {result_storage} is non-nullptr, it will be used for the result,
1326 // {result_storage} may alias {x} or {y} for in-place modification.
1329 MutableBigInt* result_storage) {
1330 return AbsoluteBitwiseOp(isolate, x, y, result_storage, kCopy, kSymmetric,