/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_framebuffer.c | 161 struct zink_surface *transient = zink_transient_surface(psurf); in zink_get_framebuffer() local 162 if (transient) { in zink_get_framebuffer() 163 memcpy(&state.infos[i], &transient->info, sizeof(transient->info)); in zink_get_framebuffer() 175 struct zink_surface *transient = zink_transient_surface(psurf); in zink_get_framebuffer() local 176 if (transient) { in zink_get_framebuffer() 177 memcpy(&state.infos[state.num_attachments], &transient->info, sizeof(transient->info)); in zink_get_framebuffer()
|
H A D | zink_render_pass.c | 330 struct zink_surface *transient = zink_transient_surface(fb->zsbuf); in zink_init_zs_attachment() local 332 rt->samples = MAX3(transient ? transient->base.nr_samples : 0, fb->zsbuf->texture->nr_samples, 1); in zink_init_zs_attachment() 343 needs_write_z |= transient || rt->clear_color || in zink_init_zs_attachment() 364 struct zink_surface *transient = zink_transient_surface(psurf); in zink_init_color_attachment() local 366 rt->samples = MAX3(transient ? transient->base.nr_samples : 0, psurf->texture->nr_samples, 1); in zink_init_color_attachment() 391 struct zink_surface *transient = zink_transient_surface(surf); in get_render_pass() local 392 if (transient) { in get_render_pass() 408 struct zink_surface *transient in get_render_pass() local 543 struct zink_surface *transient = zink_transient_surface(ctx->fb_state.cbufs[i]); prep_fb_attachments() local 557 struct zink_surface *transient = zink_transient_surface(ctx->fb_state.zsbuf); prep_fb_attachments() local 645 struct zink_surface *transient = zink_transient_surface(ctx->fb_state.cbufs[i]); begin_render_pass() local 659 struct zink_surface *transient = zink_transient_surface(ctx->fb_state.zsbuf); begin_render_pass() local [all...] |
H A D | zink_surface.c | 282 /* transient fb attachment: not cached */ in zink_create_surface() 286 struct zink_resource *transient = zink_resource(pctx->screen->resource_create(pctx->screen, &rtempl)); in zink_create_surface() local 287 if (!transient) in zink_create_surface() 289 ivci.image = transient->obj->image; in zink_create_surface() 290 csurf->transient = (struct zink_ctx_surface*)wrap_surface(pctx, (struct pipe_surface*)create_surface(pctx, &transient->base.b, templ, &ivci, true)); in zink_create_surface() 291 if (!csurf->transient) { in zink_create_surface() 292 pipe_resource_reference((struct pipe_resource**)&transient, NULL); in zink_create_surface() 296 pipe_resource_reference((struct pipe_resource**)&transient, NULL); in zink_create_surface() 341 pipe_surface_release(pctx, (struct pipe_surface**)&csurf->transient); in zink_surface_destroy() [all...] |
H A D | zink_surface.h | 67 struct zink_ctx_surface *transient; //zink_ctx_surface member 79 /* use this cast for checking transient framebuffer surfaces */ 83 return psurface ? ((struct zink_ctx_surface *)psurface)->transient ? ((struct zink_ctx_surface *)psurface)->transient->surf : NULL : NULL; in zink_transient_surface()
|
H A D | zink_context.c | 2765 struct zink_surface *transient = zink_transient_surface(surf); in unbind_fb_surface() local 2770 if (transient) in unbind_fb_surface() 2771 zink_batch_reference_surface(&ctx->batch, transient); in unbind_fb_surface() 2871 struct zink_surface *transient = zink_transient_surface(psurf); in zink_set_framebuffer_state() local 2872 if (transient) in zink_set_framebuffer_state() 2875 samples = MAX3(transient ? transient->base.nr_samples : 1, psurf->texture->nr_samples, 1); in zink_set_framebuffer_state() 2907 struct zink_surface *transient = zink_transient_surface(psurf); in zink_set_framebuffer_state() local 2908 if (transient) in zink_set_framebuffer_state() 2911 samples = MAX3(transient in zink_set_framebuffer_state() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | propertyNamesOfReservedWords.js | 56 transient; 125 transient; 195 transient; 264 transient, 349 E[E["transient"] = 53] = "transient";
|
/third_party/ffmpeg/libavcodec/ |
H A D | opus_celt.c | 122 int consumed, bits = f->transient ? 2 : 4; in celt_decode_tf_changes() 134 bits = f->transient ? 4 : 5; in celt_decode_tf_changes() 137 if (tf_select_bit && ff_celt_tf_select[f->size][f->transient][0][tf_changed] != in celt_decode_tf_changes() 138 ff_celt_tf_select[f->size][f->transient][1][tf_changed]) in celt_decode_tf_changes() 142 f->tf_change[i] = ff_celt_tf_select[f->size][f->transient][tf_select][f->tf_change[i]]; in celt_decode_tf_changes() 340 f->transient = 0; in ff_celt_decode_frame() 381 /* obtain transient flag */ in ff_celt_decode_frame() 383 f->transient = ff_opus_rc_dec_log(rc, 3); in ff_celt_decode_frame() 385 f->blocks = f->transient ? 1 << f->size : 1; in ff_celt_decode_frame() 388 imdct = f->imdct[f->transient in ff_celt_decode_frame() [all...] |
H A D | opusenc.c | 197 if (f->transient) { in celt_frame_mdct() 261 int bits = f->transient ? 2 : 4; in celt_enc_tf() 272 bits = f->transient ? 4 : 5; in celt_enc_tf() 275 if (tf_select_needed && ff_celt_tf_select[f->size][f->transient][0][tf_changed] != in celt_enc_tf() 276 ff_celt_tf_select[f->size][f->transient][1][tf_changed]) { in celt_enc_tf() 282 f->tf_change[i] = ff_celt_tf_select[f->size][f->transient][tf_select][f->tf_change[i]]; in celt_enc_tf() 447 /* Need to handle transient/non-transient switches at any point during analysis */ in celt_encode_frame() 462 ff_opus_rc_enc_log(rc, f->transient, 3); in celt_encode_frame()
|
H A D | opusenc_psy.c | 288 f->transient = neighbouring_points > 0; in ff_opus_psy_celt_frame_init() 289 f->blocks = f->transient ? OPUS_BLOCK_SIZE(s->p.framesize)/CELT_OVERLAP : 1; in ff_opus_psy_celt_frame_init() 428 int base = f->transient ? 120 : 960; in celt_search_for_tf() 431 int c = ff_celt_tf_select[f->size][f->transient][cway][i]; in celt_search_for_tf() 457 int start_transient_flag = f->transient; in ff_opus_psy_celt_frame_process() 468 if (f->transient != start_transient_flag) { in ff_opus_psy_celt_frame_process() 469 f->blocks = f->transient ? OPUS_BLOCK_SIZE(s->p.framesize)/CELT_OVERLAP : 1; in ff_opus_psy_celt_frame_process()
|
H A D | opus_celt.h | 109 int transient; member 115 int blocks; /* number of iMDCT blocks in the frame, depends on transient */
|
H A D | wmalosslessdec.c | 66 int transient_counter; ///< number of transient samples from the beginning of the transient zone 165 int transient[WMALL_MAX_CHANNELS]; member 517 s->transient[ch] = get_bits1(&s->gb); in decode_channel_residues() 518 if (s->transient[ch]) { in decode_channel_residues() 521 s->transient[ch] = 0; in decode_channel_residues() 525 s->transient[ch] = 1; in decode_channel_residues() 609 * @brief Reset filter parameters and transient area at new seekable tile. 619 a transient area which is samples_per_frame samples long */ in reset_codec() 621 s->transient[ic in reset_codec() [all...] |
H A D | opus.c | 650 if (f->transient && f->size >= 2 && tbits_8ths >= ((f->size + 2) << 3)) in ff_celt_bitalloc()
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_textview.py | 36 transient = Func() variable in VW 45 VW.transient.__init__() 51 self.assertTrue(VW.transient.called) 58 self.assertFalse(VW.transient.called)
|
/third_party/python/Lib/idlelib/ |
H A D | searchbase.py | 59 self.top.transient(text.winfo_toplevel()) 72 self.top.transient('')
|
H A D | textview.py | 138 self.transient(parent)
|
H A D | help_about.py | 46 self.transient(parent)
|
H A D | query.py | 60 self.transient(parent)
|
H A D | config_key.py | 323 self.transient(parent)
|
H A D | configdialog.py | 80 self.transient(parent)
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
H A D | vktMemoryRequirementsTests.cpp | 783 , transient (transient_) in ImageTestParams() 794 bool transient; member 870 bool transient; in populateTestGroup() member 875 { (VkImageCreateFlags)0, true, "transient" }, in populateTestGroup() 893 params.transient = imageFlagsCases[flagsNdx].transient; in populateTestGroup() 980 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in verifyMemoryRequirements() 1554 const VkImageUsageFlags actualUsageFlags = loopUsageFlags | (params.transient ? VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT : (VkImageUsageFlagBits)0); in execTest() 1589 // For the same tiling, transient usage, and sparse flags, (and format, if D/S) memoryTypeBits must be the same for all images in execTest() 2040 const VkImageUsageFlags actualUsageFlags = loopUsageFlags | (params.transient in testMultiplaneImages() 2196 bool transient; populateMultiplaneTestGroup() member 2221 const bool transient = imageFlagsCases[flagsNdx].transient; populateMultiplaneTestGroup() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryRequirementsTests.cpp | 790 , transient (transient_) in ImageTestParams() 801 bool transient; member 879 bool transient; in populateTestGroup() member 884 { (VkImageCreateFlags)0, true, "transient" }, in populateTestGroup() 902 params.transient = imageFlagsCases[flagsNdx].transient; in populateTestGroup() 990 "Memory type includes VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT for a non-transient attachment image"); in verifyMemoryRequirements() 1534 const VkImageUsageFlags actualUsageFlags = loopUsageFlags | (params.transient ? VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT : (VkImageUsageFlagBits)0); in execTest() 1569 // For the same tiling, transient usage, and sparse flags, (and format, if D/S) memoryTypeBits must be the same for all images in execTest() 1950 const VkImageUsageFlags actualUsageFlags = loopUsageFlags | (params.transient in testMultiplaneImages() 2074 bool transient; populateMultiplaneTestGroup() member 2099 const bool transient = imageFlagsCases[flagsNdx].transient; populateMultiplaneTestGroup() local [all...] |
/third_party/python/Lib/tkinter/ |
H A D | simpledialog.py | 62 self.root.transient(master) 113 # make the child transient, or else it 116 self.transient(parent)
|
H A D | __init__.py | 2287 """Instruct the window manager that this widget is transient 2289 return self.tk.call('wm', 'transient', self._w, master) 2291 transient = wm_transient variable in Wm
|
/third_party/node/deps/v8/tools/torque/vim-torque/syntax/ |
H A D | torque.vim | 33 syn keyword torqueModifier extern javascript constexpr transitioning transient weak export
|
/third_party/node/deps/v8/src/torque/ |
H A D | torque-parser.cc | 726 auto transient = child_results->NextAs<bool>(); in MakeAbstractTypeDeclaration() local 735 if (transient) flags |= AbstractTypeFlag::kTransient; in MakeAbstractTypeDeclaration() 1030 auto transient = child_results->NextAs<bool>(); in MakeClassDeclaration() local 1031 if (transient) flags |= ClassFlag::kTransient; in MakeClassDeclaration() 1095 if (transient) abstract_type_flags |= AbstractTypeFlag::kTransient; in MakeClassDeclaration() 2777 Rule({annotations, CheckIf(Token("extern")), CheckIf(Token("transient")), 2794 Rule({annotations, CheckIf(Token("transient")), Token("type"), &name,
|