Home
last modified time | relevance | path

Searched refs:eo (Results 1 - 25 of 49) sorted by relevance

12

/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeon_vce_52.c257 RVCE_CS(enc->enc_pic.eo.picture_structure); in encode()
259 RVCE_CS(enc->enc_pic.eo.force_refresh_map); in encode()
260 RVCE_CS(enc->enc_pic.eo.insert_aud); in encode()
261 RVCE_CS(enc->enc_pic.eo.end_of_sequence); in encode()
262 RVCE_CS(enc->enc_pic.eo.end_of_stream); in encode()
283 enc->enc_pic.eo.enc_input_pic_addr_array_disable2pipe_disablemboffload = 0x00000000; in encode()
285 enc->enc_pic.eo.enc_input_pic_addr_array_disable2pipe_disablemboffload = 0x00010000; in encode()
286 RVCE_CS(enc->enc_pic.eo.enc_input_pic_addr_array_disable2pipe_disablemboffload); in encode()
287 RVCE_CS(enc->enc_pic.eo.enc_input_pic_tile_config); in encode()
291 (enc->enc_pic.eo in encode()
[all...]
/third_party/musl/src/env/
H A Dunsetenv.c23 char **e = __environ, **eo = e; in unsetenv() local
27 else if (eo != e) in unsetenv()
28 *eo++ = *e; in unsetenv()
30 eo++; in unsetenv()
31 if (eo != e) *eo = 0; in unsetenv()
/third_party/lzma/CPP/7zip/Bundles/SFXWin/
H A DSfxWin.cpp171 CExtractOptions eo; in WinMain2() local
180 eo.OutputDir = outputFolderDefined ? outputFolder : dirPrefix; in WinMain2()
181 eo.YesToAll = assumeYes; in WinMain2()
182 eo.OverwriteMode = assumeYes ? in WinMain2()
185 eo.PathMode = NExtract::NPathMode::kFullPaths; in WinMain2()
186 eo.TestMode = false; in WinMain2()
198 wildcardCensor, eo, (assumeYes ? false: true), messageWasDisplayed, ecs); in WinMain2()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_tri.c477 __m128i eo, p0, p1, p2; in do_triangle_ccw() local
528 * Note eo cannot overflow even if dcdx/dcdy would already have in do_triangle_ccw()
529 * 31 bits (which they shouldn't have). This is because eo in do_triangle_ccw()
532 eo = _mm_sub_epi32(_mm_andnot_si128(dcdy_neg_mask, dcdy), in do_triangle_ccw()
535 /* ei = _mm_sub_epi32(_mm_sub_epi32(dcdy, dcdx), eo); */ in do_triangle_ccw()
545 * a multiple of 128), and of course storing eo separately... in do_triangle_ccw()
552 plane[0].eo = (uint32_t)_mm_cvtsi128_si32(eo); in do_triangle_ccw()
554 eo = _mm_shuffle_epi32(eo, _MM_SHUFFL in do_triangle_ccw()
885 int64_t eo[MAX_PLANES]; lp_setup_bin_triangle() local
[all...]
H A Dlp_rast_tri_tmp.h109 const int32_t cox = plane[j].eo >> FIXED_ORDER; in do_block_16()
121 const int64_t cox = IMUL64(plane[j].eo, 4); in do_block_16()
122 const int32_t ei = plane[j].dcdy - plane[j].dcdx - (int64_t)plane[j].eo; in do_block_16()
226 * dcdx, dcdy, eo are always 0 (by definition). in lp_rast_triangle()
237 const int32_t cox = plane[j].eo >> FIXED_ORDER; in lp_rast_triangle()
276 const int32_t cox = plane[j].eo << 4; in lp_rast_triangle()
277 const int32_t ei = plane[j].dcdy - plane[j].dcdx - (int32_t)plane[j].eo; in lp_rast_triangle()
388 const int cox = plane[j].eo * 4; in TRI_16()
H A Dlp_setup_point.c521 plane[0].eo = 1 << 8; in try_setup_point()
526 plane[1].eo = 0; in try_setup_point()
531 plane[2].eo = 1 << 8; in try_setup_point()
536 plane[3].eo = 0; in try_setup_point()
H A Dlp_setup_line.c705 plane[i].eo = 0; in try_setup_line()
706 if (plane[i].dcdx < 0) plane[i].eo -= plane[i].dcdx; in try_setup_line()
707 if (plane[i].dcdy > 0) plane[i].eo += plane[i].dcdy; in try_setup_line()
/third_party/lzma/CPP/7zip/Bundles/SFXCon/
H A DSfxCon.cpp442 CExtractOptions eo; in Main2() local
443 eo.StdOutMode = false; in Main2()
444 eo.YesToAll = yesToAll; in Main2()
445 eo.TestMode = command.CommandType == NCommandType::kTest; in Main2()
446 eo.PathMode = NExtract::NPathMode::kFullPaths; in Main2()
447 eo.OverwriteMode = yesToAll ? in Main2()
450 eo.OutputDir = outputDir; in Main2()
458 eo, in Main2()
/third_party/lzma/CPP/7zip/UI/Common/
H A DArchiveCommandLine.cpp1410 CExtractOptionsBase &eo = options.ExtractOptions; in Parse2() local
1412 eo.ExcludeDirItems = options.Censor.ExcludeDirItems; in Parse2()
1413 eo.ExcludeFileItems = options.Censor.ExcludeFileItems; in Parse2()
1416 CExtractNtOptions &nt = eo.NtOptions; in Parse2()
1446 eo.ZoneMode = NExtract::NZoneIdMode::kAll; in Parse2()
1450 if (s == L"0") eo.ZoneMode = NExtract::NZoneIdMode::kNone; in Parse2()
1451 else if (s == L"1") eo.ZoneMode = NExtract::NZoneIdMode::kAll; in Parse2()
1452 else if (s == L"2") eo.ZoneMode = NExtract::NZoneIdMode::kOffice; in Parse2()
1525 eo.OutputDir = us2fs(parser[NKey::kOutputDir].PostStrings[0]); in Parse2()
1527 NFile::NName::NormalizeDirSeparators(eo in Parse2()
[all...]
/third_party/ffmpeg/tests/checkasm/
H A Dhevc_sao.c114 int eo = rnd()%4; in check_sao_edge() local
122 int16_t *sao_offset_val, int eo, int width, int height); in check_sao_edge()
131 call_ref(dst0, src0 + offset, stride, offset_val, eo, w, block_size); in check_sao_edge()
132 call_new(dst1, src1 + offset, stride, offset_val, eo, w, block_size); in check_sao_edge()
138 bench_new(dst1, src1 + offset, stride, offset_val, eo, block_size, block_size); in check_sao_edge()
/third_party/ntfs-3g/libntfs-3g/
H A Dvolume.c261 int eo; in ntfs_mft_load() local
422 eo = errno; in ntfs_mft_load()
433 errno = eo; in ntfs_mft_load()
508 int eo; in ntfs_volume_startup() local
664 eo = errno; in ntfs_volume_startup()
668 errno = eo; in ntfs_volume_startup()
950 int i, j, eo; in ntfs_device_mount() local
1327 eo = errno; in ntfs_device_mount()
1333 errno = eo; in ntfs_device_mount()
1428 int eo in ntfs_mount() local
1693 int eo; ntfs_logfile_reset() local
[all...]
H A Ddir.c263 int eo, rc; in ntfs_inode_lookup_by_name() local
509 eo = EIO; in ntfs_inode_lookup_by_name()
513 errno = eo; in ntfs_inode_lookup_by_name()
516 eo = errno; in ntfs_inode_lookup_by_name()
1049 int eo; in ntfs_mft_get_parent_ref() local
1079 eo = errno; in ntfs_mft_get_parent_ref()
1081 errno = eo; in ntfs_mft_get_parent_ref()
1112 int rc, ir_pos, bmp_buf_size, bmp_buf_pos, eo; in ntfs_readdir() local
1422 eo = errno; in ntfs_readdir()
1432 errno = eo; in ntfs_readdir()
[all...]
/third_party/ffmpeg/libavcodec/arm/
H A Dhevcdsp_init_neon.c32 int eo, int width, int height);
175 int eo, int width, int height) { in ff_hevc_sao_edge_filter_neon_8_wrapper()
188 a_stride = pos[eo][0][0] + pos[eo][0][1] * stride_src; in ff_hevc_sao_edge_filter_neon_8_wrapper()
189 b_stride = pos[eo][1][0] + pos[eo][1][1] * stride_src; in ff_hevc_sao_edge_filter_neon_8_wrapper()
174 ff_hevc_sao_edge_filter_neon_8_wrapper(uint8_t *_dst, uint8_t *_src, ptrdiff_t stride_dst, int16_t *sao_offset_val, int eo, int width, int height) ff_hevc_sao_edge_filter_neon_8_wrapper() argument
/third_party/pcre2/pcre2/src/
H A Dpcre2posix.c355 int rc, so, eo; in pcre2_regexec() local
380 eo = pmatch[0].rm_eo; in pcre2_regexec()
385 eo = (int)strlen(string); in pcre2_regexec()
389 (PCRE2_SPTR)string + so, (eo - so), 0, options, md, NULL); in pcre2_regexec()
/third_party/ffmpeg/libavcodec/aarch64/
H A Dhevcdsp_init_aarch64.c61 int16_t *sao_offset_val, int eo, int width, int height);
63 int16_t *sao_offset_val, int eo, int width, int height);
/third_party/musl/porting/liteos_m/kernel/src/regex/
H A Dregexec.c772 regoff_t so, eo; in tre_tnfa_run_backtrack() local
782 eo = pmatch[bt].rm_eo; in tre_tnfa_run_backtrack()
783 bt_len = eo - so; in tre_tnfa_run_backtrack()
1001 regoff_t *tags = NULL, eo; in regexec() local
1014 status = tre_tnfa_run_backtrack(tnfa, string, tags, eflags, &eo); in regexec()
1019 status = tre_tnfa_run_parallel(tnfa, string, tags, eflags, &eo); in regexec()
1024 tre_fill_pmatch(nmatch, pmatch, tnfa->cflags, tnfa, tags, eo); in regexec()
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
H A Dregexec.c772 regoff_t so, eo; in tre_tnfa_run_backtrack() local
782 eo = pmatch[bt].rm_eo; in tre_tnfa_run_backtrack()
783 bt_len = eo - so; in tre_tnfa_run_backtrack()
1001 regoff_t *tags = NULL, eo; in regexec() local
1014 status = tre_tnfa_run_backtrack(tnfa, string, tags, eflags, &eo); in regexec()
1019 status = tre_tnfa_run_parallel(tnfa, string, tags, eflags, &eo); in regexec()
1024 tre_fill_pmatch(nmatch, pmatch, tnfa->cflags, tnfa, tags, eo); in regexec()
/third_party/musl/porting/uniproton/kernel/src/regex/
H A Dregexec.c772 regoff_t so, eo; in tre_tnfa_run_backtrack() local
782 eo = pmatch[bt].rm_eo; in tre_tnfa_run_backtrack()
783 bt_len = eo - so; in tre_tnfa_run_backtrack()
1001 regoff_t *tags = NULL, eo; in regexec() local
1014 status = tre_tnfa_run_backtrack(tnfa, string, tags, eflags, &eo); in regexec()
1019 status = tre_tnfa_run_parallel(tnfa, string, tags, eflags, &eo); in regexec()
1024 tre_fill_pmatch(nmatch, pmatch, tnfa->cflags, tnfa, tags, eo); in regexec()
/third_party/musl/src/regex/
H A Dregexec.c772 regoff_t so, eo; in tre_tnfa_run_backtrack() local
782 eo = pmatch[bt].rm_eo; in tre_tnfa_run_backtrack()
783 bt_len = eo - so; in tre_tnfa_run_backtrack()
1001 regoff_t *tags = NULL, eo; in regexec() local
1014 status = tre_tnfa_run_backtrack(tnfa, string, tags, eflags, &eo); in regexec()
1019 status = tre_tnfa_run_parallel(tnfa, string, tags, eflags, &eo); in regexec()
1024 tre_fill_pmatch(nmatch, pmatch, tnfa->cflags, tnfa, tags, eo); in regexec()
/third_party/spirv-tools/utils/
H A Droll_deps.sh21 set -eo pipefail
/third_party/ntfs-3g/ntfsprogs/
H A Dntfscmp.c88 int eo = errno; in perr_printf() local
90 fprintf(stdout, PERR_PREFIX, eo); in perr_printf()
94 fprintf(stdout, ": %s", strerror(eo)); in perr_printf()
147 int eo = errno; in perr_exit() local
149 fprintf(stdout, PERR_PREFIX, eo); in perr_exit()
153 printf(": %s\n", strerror(eo)); in perr_exit()
H A Dntfswipe.c1390 int eo; in wipe_logfile() local
1467 eo = errno; in wipe_logfile()
1469 errno = eo; in wipe_logfile()
1471 eo = errno; in wipe_logfile()
1473 errno = eo; in wipe_logfile()
1499 int eo; in wipe_pagefile() local
1558 eo = errno; in wipe_pagefile()
1560 errno = eo; in wipe_pagefile()
1562 eo = errno; in wipe_pagefile()
1564 errno = eo; in wipe_pagefile()
[all...]
/third_party/lzma/CPP/7zip/UI/Console/
H A DMain.cpp1303 CExtractOptions eo;
1304 (CExtractOptionsBase &)eo = options.ExtractOptions;
1306 eo.StdInMode = options.StdInMode;
1307 eo.StdOutMode = options.StdOutMode;
1308 eo.YesToAll = options.YesToAll;
1309 eo.TestMode = options.Command.IsTestCommand();
1312 eo.Properties = options.Properties;
1335 eo,
/third_party/protobuf/
H A Dbuild_files_updated_unittest.sh5 set -eo pipefail
/third_party/toybox/toys/pending/
H A Dawk.c3344 regoff_t so = 0, eo = 0; in getrec_f() local
3358 r = rx_findx(rsrxp, TT.rgl.recptr, zfp->endoffs - zfp->recoffs, &so, &eo, 0); in getrec_f()
3360 if (r || zfp->recoffs + eo > (int)zfp->recbufsize - RS_LENGTH_MARGIN) { in getrec_f()
3363 (r || zfp->recoffs + eo == zfp->endoffs)) { in getrec_f()
3381 zfp->recoffs += eo; in getrec_f()
3473 regoff_t so = -1, eo; in gsub() local
3479 while(!rx_find(rxp, p, &so, &eo, eflags)) { in gsub()
3480 need += SLEN(repl) + (eo - so) * (namps - 1); in gsub()
3482 p += eo ? eo in gsub()
[all...]

Completed in 29 milliseconds

12