/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | 1361 * @param left A map-like whose properties should be compared. 1364 function equalOwnProperties(left, right, equalityComparer) { 1366 if (left === right) 1368 if (!left || !right) 1370 for (var key in left) { 1371 if (hasOwnProperty.call(left, key)) { 1374 if (!equalityComparer(left[key], right[key])) 1380 if (!hasOwnProperty.call(left, key)) 2213 /** Remove an item from an array, moving everything to its right one space left. */ 2224 /** Remove an item by index from an array, moving everything to its right one space left [all...] |
H A D | typescript.js | 1352 * @param left A map-like whose properties should be compared. 1355 function equalOwnProperties(left, right, equalityComparer) { 1357 if (left === right) 1359 if (!left || !right) 1361 for (var key in left) { 1362 if (hasOwnProperty.call(left, key)) { 1365 if (!equalityComparer(left[key], right[key])) 1371 if (!hasOwnProperty.call(left, key)) 2204 /** Remove an item from an array, moving everything to its right one space left. */ 2215 /** Remove an item by index from an array, moving everything to its right one space left [all...] |
H A D | typescriptServices.js | 1352 * @param left A map-like whose properties should be compared. 1355 function equalOwnProperties(left, right, equalityComparer) { 1357 if (left === right) 1359 if (!left || !right) 1361 for (var key in left) { 1362 if (hasOwnProperty.call(left, key)) { 1365 if (!equalityComparer(left[key], right[key])) 1371 if (!hasOwnProperty.call(left, key)) 2204 /** Remove an item from an array, moving everything to its right one space left. */ 2215 /** Remove an item by index from an array, moving everything to its right one space left [all...] |
H A D | tsserver.js | 1362 * @param left A map-like whose properties should be compared. 1365 function equalOwnProperties(left, right, equalityComparer) { 1367 if (left === right) 1369 if (!left || !right) 1371 for (var key in left) { 1372 if (hasOwnProperty.call(left, key)) { 1375 if (!equalityComparer(left[key], right[key])) 1381 if (!hasOwnProperty.call(left, key)) 2214 /** Remove an item from an array, moving everything to its right one space left. */ 2225 /** Remove an item by index from an array, moving everything to its right one space left [all...] |
/kernel/linux/linux-5.10/arch/arm/mm/ |
H A D | dma-mapping.c | 864 size_t left = size; in dma_cache_maint_page() local 876 size_t len = left; in dma_cache_maint_page() 902 left -= len; in dma_cache_maint_page() 903 } while (left); in dma_cache_maint_page() 946 size_t left = size; in __dma_page_dev_to_cpu() local 952 left -= PAGE_SIZE - off; in __dma_page_dev_to_cpu() 954 while (left >= PAGE_SIZE) { in __dma_page_dev_to_cpu() 957 left -= PAGE_SIZE; in __dma_page_dev_to_cpu()
|
/kernel/linux/linux-5.10/drivers/isdn/hardware/mISDN/ |
H A D | mISDNisar.c | 177 u16 left, val, *sp = (u16 *)buf; in load_firmware() local 209 left = blk_head.len; in load_firmware() 210 if (cnt + left > size) { in load_firmware() 212 isar->name, size, cnt + left); in load_firmware() 235 while (left > 0) { in load_firmware() 236 if (left > 126) in load_firmware() 239 noc = left; in load_firmware() 245 left -= noc; in load_firmware()
|
/kernel/linux/linux-5.10/drivers/media/platform/omap3isp/ |
H A D | ispccdc.c | 1232 sph = crop->left * 2; in ccdc_configure() 1235 sph = crop->left; in ccdc_configure() 2084 /* For Bayer formats, restrict left/top and width/height to even values in ccdc_try_crop() 2089 crop->left &= ~1; in ccdc_try_crop() 2093 crop->left = clamp_t(u32, crop->left, 0, sink->width - CCDC_MIN_WIDTH); in ccdc_try_crop() 2101 max_width = (sink->width - crop->left + 15) & ~15; in ccdc_try_crop() 2239 sel->r.left = 0; in ccdc_get_selection() 2354 crop->left = 0; in ccdc_set_format()
|
/kernel/linux/linux-5.10/include/trace/events/ |
H A D | f2fs.h | 1963 TP_PROTO(unsigned int left, unsigned int free, 1966 TP_ARGS(left, free, seq), 1969 __field(unsigned int, left) 1975 __entry->left = left; 1981 __entry->left, __entry->free, __entry->seq) 1986 TP_PROTO(unsigned int left, unsigned int free, 1989 TP_ARGS(left, free, seq)
|
/kernel/linux/linux-5.10/drivers/media/test-drivers/vivid/ |
H A D | vivid-vid-cap.c | 879 sel->r.left = sel->r.top = 0; in vivid_vid_cap_g_selection() 1105 win->w.left = dev->overlay_cap_left; in vidioc_g_fmt_vid_overlay() 1138 win->w.left = clamp_t(int, win->w.left, in vidioc_try_fmt_vid_overlay() 1161 r->left = clamp_t(u32, r->left, 0, dev->fb_cap.fmt.width - 1); in vidioc_try_fmt_vid_overlay() 1162 r->width = clamp_t(u32, r->width, 1, dev->fb_cap.fmt.width - r->left); in vidioc_try_fmt_vid_overlay() 1211 dev->overlay_cap_left = win->w.left; in vidioc_s_fmt_vid_overlay()
|
H A D | vivid-vid-out.c | 645 sel->r.left = sel->r.top = 0; in vivid_vid_out_g_selection() 844 win->w.left = dev->overlay_out_left; in vidioc_g_fmt_vid_out_overlay() 878 win->w.left = clamp_t(int, win->w.left, in vidioc_try_fmt_vid_out_overlay() 902 r->left = clamp_t(u32, r->left, 0, dev->display_width - 1); in vidioc_try_fmt_vid_out_overlay() 903 r->width = clamp_t(u32, r->width, 1, dev->display_width - r->left); in vidioc_try_fmt_vid_out_overlay() 952 dev->overlay_out_left = win->w.left; in vidioc_s_fmt_vid_out_overlay()
|
/kernel/linux/linux-5.10/drivers/staging/media/imx/ |
H A D | imx-media-csi.c | 1204 if (crop->left + crop->width > infmt->width) in csi_try_crop() 1205 crop->left = infmt->width - crop->width; in csi_try_crop() 1206 /* adjust crop left/width to h/w alignment restrictions */ in csi_try_crop() 1207 crop->left &= ~0x3; in csi_try_crop() 1498 crop->left = 0; in csi_try_fmt() 1505 compose->left = 0; in csi_try_fmt() 1603 sel->r.left = 0; in csi_get_selection() 1614 sel->r.left = 0; in csi_get_selection() 1712 sel->r.left = 0; in csi_set_selection()
|
/kernel/linux/linux-6.6/drivers/media/platform/ti/omap3isp/ |
H A D | ispccdc.c | 1238 sph = crop->left * 2; in ccdc_configure() 1241 sph = crop->left; in ccdc_configure() 2097 /* For Bayer formats, restrict left/top and width/height to even values in ccdc_try_crop() 2102 crop->left &= ~1; in ccdc_try_crop() 2106 crop->left = clamp_t(u32, crop->left, 0, sink->width - CCDC_MIN_WIDTH); in ccdc_try_crop() 2114 max_width = (sink->width - crop->left + 15) & ~15; in ccdc_try_crop() 2253 sel->r.left = 0; in ccdc_get_selection() 2374 crop->left = 0; in ccdc_set_format()
|
/kernel/linux/linux-6.6/drivers/staging/media/imx/ |
H A D | imx-media-csi.c | 1187 if (crop->left + crop->width > infmt->width) in csi_try_crop() 1188 crop->left = infmt->width - crop->width; in csi_try_crop() 1189 /* adjust crop left/width to h/w alignment restrictions */ in csi_try_crop() 1190 crop->left &= ~0x3; in csi_try_crop() 1482 crop->left = 0; in csi_try_fmt() 1489 compose->left = 0; in csi_try_fmt() 1589 sel->r.left = 0; in csi_get_selection() 1600 sel->r.left = 0; in csi_get_selection() 1699 sel->r.left = 0; in csi_set_selection()
|
/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/core/ |
H A D | rtw_security.c | 1479 size_t i, e, left, total_len; in omac1_aes_128_vector() local 1490 left = total_len; in omac1_aes_128_vector() 1496 while (left >= AES_BLOCK_SIZE) { in omac1_aes_128_vector() 1505 if (left > AES_BLOCK_SIZE) in omac1_aes_128_vector() 1507 left -= AES_BLOCK_SIZE; in omac1_aes_128_vector() 1514 if (left || total_len == 0) { in omac1_aes_128_vector() 1515 for (i = 0; i < left; i++) { in omac1_aes_128_vector() 1523 cbc[left] ^= 0x80; in omac1_aes_128_vector()
|
/kernel/linux/linux-6.6/drivers/bluetooth/ |
H A D | hci_bcm4377.c | 1142 size_t i, left, transfer_len; in __bcm4378_send_calibration() local 1152 for (i = 0, left = data_size; i < blocks; ++i, left -= transfer_len) { in __bcm4378_send_calibration() 1154 min_t(size_t, left, BCM4378_CALIBRATION_CHUNK_SIZE); in __bcm4378_send_calibration() 1268 size_t i, left, transfer_len; in bcm4378_send_ptb() local 1271 for (i = 0, left = fw->size; i < chunks; ++i, left -= transfer_len) { in bcm4378_send_ptb() 1272 transfer_len = min_t(size_t, left, BCM4378_PTB_CHUNK_SIZE); in bcm4378_send_ptb()
|
/kernel/linux/linux-6.6/drivers/media/platform/amphion/ |
H A D | venc.c | 242 venc->params.crop.left = 0; in venc_s_fmt() 341 s->r.left = 0; in venc_g_selection() 372 if (rect->left > src_width - min_width || rect->top > src_height - min_height) in venc_valid_crop() 375 rect->width = min(rect->width, src_width - rect->left); in venc_valid_crop() 399 venc->params.crop.left = ALIGN(s->r.left, res->step_width); in venc_s_selection() 404 venc->params.crop.left = 0; in venc_s_selection() 1183 venc->params.crop.left, in venc_get_debug_info()
|
/kernel/linux/linux-6.6/drivers/isdn/hardware/mISDN/ |
H A D | mISDNisar.c | 177 u16 left, val, *sp = (u16 *)buf; in load_firmware() local 209 left = blk_head.len; in load_firmware() 210 if (cnt + left > size) { in load_firmware() 212 isar->name, size, cnt + left); in load_firmware() 235 while (left > 0) { in load_firmware() 236 if (left > 126) in load_firmware() 239 noc = left; in load_firmware() 245 left -= noc; in load_firmware()
|
/kernel/linux/linux-6.6/lib/ |
H A D | iov_iter.c | 54 unsigned left; \ 60 left = (STEP); \ 62 len -= left; \ 70 if (left) \ 88 unsigned left; \ 100 left = (STEP); \ 102 len -= left; \ 105 if (left || n == 0) \
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.cc | 996 int left = 0; // inclusive in FindBreakpointInfoInsertPos() local 998 while (right - left > 1) { in FindBreakpointInfoInsertPos() 999 int mid = left + (right - left) / 2; in FindBreakpointInfoInsertPos() 1002 left = mid; in FindBreakpointInfoInsertPos() 1008 int left_pos = GetBreakpointPos(isolate, breakpoint_infos->get(left)); in FindBreakpointInfoInsertPos() 1009 return left_pos < position ? left + 1 : left; in FindBreakpointInfoInsertPos()
|
/third_party/skia/src/core/ |
H A D | SkBlurMF.cpp | 207 canvas.translate(-SkIntToScalar(mask->fBounds.left()), in draw_rrect_into_mask() 229 canvas.translate(-SkIntToScalar(mask->fBounds.left()), in draw_rects_into_mask() 501 center.set(smallW + (innerIR.left() - srcM.fBounds.left()), in filterRectsToNine() 519 smallR[0].setLTRB(rects[0].left(), rects[0].top(), in filterRectsToNine() 525 smallR[1].setLTRB(rects[1].left(), rects[1].top(), in filterRectsToNine() 744 // Populate the profile from the middle to the left edge (by flipping the half kernel and in create_half_plane_profile() 950 rect = {srcRect.left() * scale.width(), in make_rect_blur() 977 SkRect insetRect = {rect.left() + threeSigma, in make_rect_blur() 984 // wide then things aren't so simple and we have to consider both the left an in make_rect_blur() [all...] |
/third_party/skia/tests/ |
H A D | RoundRectTest.cpp | 594 REPORTER_ASSERT(reporter, dst.rect().left() == orig.rect().left() + translateX); in test_transform_helper() 618 // Right and left have swapped (sort of) in test_transform_helper() 619 REPORTER_ASSERT(reporter, orig.rect().right() == -dst.rect().left()); in test_transform_helper() 647 REPORTER_ASSERT(reporter, orig.rect().left() == dst.rect().left()); in test_transform_helper() 667 REPORTER_ASSERT(reporter, orig.rect().right() == -dst.rect().left()); in test_transform_helper() 689 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(dst.rect().left(), in test_transform_helper() 690 orig.rect().left() * xScale)); in test_transform_helper() 1260 // pixels (e.g. the leftmost point of the right circle touches the center of the left circl in test_conservative_intersection() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord_ring_test.cc | 265 CordRepConcat* MakeConcat(CordRep* left, CordRep* right, int depth = 0) { in MakeConcat() argument 268 concat->length = left->length + right->length; in MakeConcat() 269 concat->left = left; in MakeConcat() 600 auto* left = MakeConcat(RefIfInputSharedIndirect(flats[0]), flats[1]); in TEST_P() local 602 auto* concat = RefIfInputShared(MakeConcat(left, right)); in TEST_P() 614 auto* left = MakeConcat(RefIfInputSharedIndirect(flats[0]), flats[1]); in TEST_P() local 616 auto* concat = MakeConcat(left, right); in TEST_P()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | x509v3.c | 817 size_t left; in x509_parse_ext_basic_constraints() local 874 left = hdr.length; in x509_parse_ext_basic_constraints() 876 while (left) { in x509_parse_ext_basic_constraints() 879 left--; in x509_parse_ext_basic_constraints() 1372 size_t left; in x509_parse_tbs_certificate() local 1414 left = hdr.length; in x509_parse_tbs_certificate() 1416 while (left) { in x509_parse_tbs_certificate() 1419 left--; in x509_parse_tbs_certificate()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fDepthStencilTests.cpp | 387 dst.quad.posA = IVec2(isFrontFacing ? src.rect.left : (src.rect.left+src.rect.width-1), src.rect.bottom); in translateCommand() 388 dst.quad.posB = IVec2(isFrontFacing ? (src.rect.left+src.rect.width-1) : src.rect.left, src.rect.bottom+src.rect.height-1); in translateCommand() 427 glScissor(clear.rect.left+viewportX, clear.rect.bottom+viewportY, clear.rect.width, clear.rect.height); in render() 466 glViewport(command.rect.left+viewportX, command.rect.bottom+viewportY, command.rect.width, command.rect.height); in render() 488 tcu::clear(tcu::getSubregion(dstColor, clear.rect.left, clear.rect.bottom, clear.rect.width, clear.rect.height), clear.color); in renderReference() 493 tcu::clearStencil(tcu::getSubregion(dstStencil, clear.rect.left, clear.rect.bottom, clear.rect.width, clear.rect.height), maskedVal); in renderReference()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fDepthStencilTests.cpp | 387 dst.quad.posA = IVec2(isFrontFacing ? src.rect.left : (src.rect.left+src.rect.width-1), src.rect.bottom); in translateCommand() 388 dst.quad.posB = IVec2(isFrontFacing ? (src.rect.left+src.rect.width-1) : src.rect.left, src.rect.bottom+src.rect.height-1); in translateCommand() 427 glScissor(clear.rect.left+viewportX, clear.rect.bottom+viewportY, clear.rect.width, clear.rect.height); in render() 466 glViewport(command.rect.left+viewportX, command.rect.bottom+viewportY, command.rect.width, command.rect.height); in render() 488 tcu::clear(tcu::getSubregion(dstColor, clear.rect.left, clear.rect.bottom, clear.rect.width, clear.rect.height), clear.color); in renderReference() 493 tcu::clearStencil(tcu::getSubregion(dstStencil, clear.rect.left, clear.rect.bottom, clear.rect.width, clear.rect.height), maskedVal); in renderReference()
|