Home
last modified time | relevance | path

Searched refs:is_readonly (Results 1 – 12 of 12) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_def_use.cpp111 if (!v || v->is_readonly()) in process_uses()
115 if (!v->rel->is_readonly()) in process_uses()
135 if (!v->rel->is_readonly()) in process_uses()
Dsb_gvn.cpp169 if (c && c->is_readonly() && ++const_count == 2) { in process_alu_src_constants()
197 if (rewrite && v->gvn_source && v->gvn_source->is_readonly() && in process_op()
Dsb_gcm.cpp478 if (!v || v->is_readonly()) in bu_release_defs()
482 if (!v->rel->is_readonly()) in bu_release_defs()
680 if (v && !v->is_readonly()) in bu_release_phi_defs()
770 if (!v || v->is_readonly()) in get_dc_vec()
Dsb_liveness.cpp285 if (!v || v->is_readonly()) in add_vec()
397 if (!v->is_readonly()) { in process_phi_branch()
Dsb_ssa_builder.cpp342 if (!v || v->is_readonly()) in rename_src_vec()
346 if (!v->rel->is_readonly()) in rename_src_vec()
Dsb_sched.cpp240 if (v->is_readonly() || v->is_undef()) in unreserve()
270 if (v->is_readonly() || v->is_undef()) { in try_reserve()
299 if (!v->is_readonly() && !v->is_undef()) { in try_reserve()
750 if (!v || v->is_readonly()) in init_uc_vec()
1939 if (!v || v->is_readonly()) in release_src_vec()
Dsb_shader.cpp240 assert(!v->is_readonly() && !v->is_rel()); in set_undef()
367 assert(!v->is_readonly() && !v->is_rel()); in get_value_version()
Dsb_ir.h550 bool is_readonly() { return flags & VLF_READONLY; } in is_readonly() function
/third_party/python/Lib/
Dimaplib.py195 self.is_readonly = False # READ-ONLY desired state
751 self.is_readonly = readonly
978 and not self.is_readonly:
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_hlsl.cpp2099 …bool is_readonly = flags.get(DecorationNonWritable) && !is_hlsl_force_storage_buffer_as_uav(var.se… in emit_buffer_block() local
2100 bool is_coherent = flags.get(DecorationCoherent) && !is_readonly; in emit_buffer_block()
2103 if (!is_readonly) in emit_buffer_block()
3259 …bool is_readonly = flags.get(DecorationNonWritable) && !is_hlsl_force_storage_buffer_as_uav(var.se… in to_resource_binding() local
3260 space = is_readonly ? 't' : 'u'; // UAV in to_resource_binding()
3261 resource_flags = is_readonly ? HLSL_BINDING_AUTO_SRV_BIT : HLSL_BINDING_AUTO_UAV_BIT; in to_resource_binding()
3278 …bool is_readonly = flags.get(DecorationNonWritable) && !is_hlsl_force_storage_buffer_as_uav(var.se… in to_resource_binding() local
3279 space = is_readonly ? 't' : 'u'; in to_resource_binding()
3280 resource_flags = is_readonly ? HLSL_BINDING_AUTO_SRV_BIT : HLSL_BINDING_AUTO_UAV_BIT; in to_resource_binding()
Dspirv_glsl.cpp2250 bool is_readonly = ssbo && flags.get(DecorationNonWritable); in emit_buffer_block_native() local
2284 … is_writeonly ? "writeonly " : "", is_readonly ? "readonly " : "", ssbo ? "buffer " : "uniform ", in emit_buffer_block_native()
/third_party/skia/third_party/externals/imgui/
Dimgui_widgets.cpp3960 const bool is_readonly = (flags & ImGuiInputTextFlags_ReadOnly) != 0; in InputTextEx() local
4127 if (is_readonly && state != NULL && (render_cursor || render_selection)) in InputTextEx()
4138 …om_state = (render_cursor || render_selection || g.ActiveId == id) && !is_readonly && state && sta… in InputTextEx()
4210 …wTabInput) && IsKeyPressedMap(ImGuiKey_Tab) && !ignore_char_inputs && !io.KeyShift && !is_readonly) in InputTextEx()
4222 if (!ignore_char_inputs && !is_readonly && !input_requested_by_nav) in InputTextEx()
4257 …ey_X)) || (is_shift_key_only && IsKeyPressedMap(ImGuiKey_Delete))) && !is_readonly && !is_password… in InputTextEx()
4259 …ressedMap(ImGuiKey_V)) || (is_shift_key_only && IsKeyPressedMap(ImGuiKey_Insert))) && !is_readonly; in InputTextEx()
4260 …const bool is_undo = ((is_shortcut_key && IsKeyPressedMap(ImGuiKey_Z)) && !is_readonly && is_undo… in InputTextEx()
4261 …iKey_Y)) || (is_osx_shift_shortcut && IsKeyPressedMap(ImGuiKey_Z))) && !is_readonly && is_undoable; in InputTextEx()
4276 …else if (IsKeyPressedMap(ImGuiKey_Delete) && !is_readonly) { state->OnKeyPressed(STB_TEXTEDIT… in InputTextEx()
[all …]