/third_party/mesa3d/src/intel/compiler/ |
D | brw_fs_scoreboard.cpp | 412 dependency() : ordered(TGL_REGDIST_NULL), jp(), in dependency() 422 ordered(mode), jp(jp), unordered(TGL_SBID_NULL), id(0), in dependency() 430 ordered(TGL_REGDIST_NULL), jp(), unordered(mode), id(id), in dependency() 437 tgl_regdist_mode ordered; member 484 return dep0.ordered == dep1.ordered && in operator ==() 507 return dep.ordered || dep.unordered; in is_valid() 523 if (dep0.ordered || dep1.ordered) { in merge() 524 dep.ordered = dep0.ordered | dep1.ordered; in merge() 546 if (dep0.ordered == TGL_REGDIST_SRC && in shadow() 548 !(dep1.ordered & TGL_REGDIST_DST)) { in shadow() [all …]
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/sctp/ |
D | sctpsendmeta.c | 70 gst_sctp_send_meta->ordered = TRUE; in gst_sctp_send_meta_init() 82 gst_sctp_send_meta->ordered, gst_sctp_send_meta->pr, in gst_sctp_send_meta_transform() 89 gboolean ordered, GstSctpSendMetaPartiallyReliability pr, guint32 pr_param) in gst_sctp_buffer_add_send_meta() argument 98 gst_sctp_send_meta->ordered = ordered; in gst_sctp_buffer_add_send_meta()
|
D | sctpsendmeta.h | 51 gboolean ordered; member 62 guint32 ppid, gboolean ordered, GstSctpSendMetaPartiallyReliability pr,
|
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/ |
D | memorymodel.txt | 126 <<memory-model-location-ordered,below>>. 140 is program-ordered before the n'th dynamic instance of B. 142 program-ordered before the dynamic instance of the OpLabel instruction 145 is program-ordered before the dynamic instances of the 149 code:OpFunctionCall instruction is program-ordered after the dynamic 152 program-ordered before dynamic instance B of any instruction and B is 153 program-ordered before dynamic instance C of any instruction then A is 154 program-ordered before C. 155 * (Complete definition): No other dynamic instances are program-ordered. 178 * (Program order): If dynamic instance A is program-ordered before B, then [all …]
|
D | memorymodel.adoc | 126 <<memory-model-location-ordered,below>>. 140 is program-ordered before the n'th dynamic instance of B. 142 program-ordered before the dynamic instance of the OpLabel instruction 145 is program-ordered before the dynamic instances of the 149 code:OpFunctionCall instruction is program-ordered after the dynamic 152 program-ordered before dynamic instance B of any instruction and B is 153 program-ordered before dynamic instance C of any instruction then A is 154 program-ordered before C. 155 * (Complete definition): No other dynamic instances are program-ordered. 178 * (Program order): If dynamic instance A is program-ordered before B, then [all …]
|
/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
D | test-ieee.cc | 42 uint64_t ordered = DOUBLE_CONVERSION_UINT64_2PART_C(0x01234567, 89ABCDEF); in TEST() local 43 CHECK_EQ(3512700564088504e-318, Double(ordered).value()); in TEST() 55 uint32_t ordered = 0x01234567; in TEST() local 56 CHECK_EQ(2.9988165487136453e-38f, Single(ordered).value()); in TEST() 67 uint64_t ordered = DOUBLE_CONVERSION_UINT64_2PART_C(0x01234567, 89ABCDEF); in TEST() local 68 DiyFp diy_fp = Double(ordered).AsDiyFp(); in TEST() 87 uint32_t ordered = 0x01234567; in TEST() local 88 DiyFp diy_fp = Single(ordered).AsDiyFp(); in TEST() 107 uint64_t ordered = DOUBLE_CONVERSION_UINT64_2PART_C(0x01234567, 89ABCDEF); in TEST() local 108 DiyFp diy_fp = Double(ordered).AsNormalizedDiyFp(); in TEST()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
D | chunked.js | 3 var loadJS = function( src, cb, ordered ){ argument 10 tmp = ordered; 11 ordered = cb; 16 script.async = !ordered;
|
/third_party/mesa3d/src/panfrost/bifrost/ |
D | gen_disasm.py | 196 def evaluate_forwards(keys, derivf, testf, mod_vals, ordered): argument 197 orderings = ["lt", "gt"] if ordered else [None] 239 ordered = 'ordering' in key_set 247 forward = evaluate_forwards(keys, derivf, testf, mod_vals, ordered) 256 if ordered: 275 if ordered:
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/ |
D | gstsctpenc.c | 96 gboolean ordered; member 162 static void get_config_from_caps (const GstCaps * caps, gboolean * ordered, 440 get_config_from_caps (caps, &sctpenc_pad->ordered, in gst_sctp_enc_request_new_pad() 568 gboolean ordered; in gst_sctp_enc_sink_chain() local 590 ordered = sctpenc_pad->ordered; in gst_sctp_enc_sink_chain() 599 ordered = sctp_send_meta->ordered; in gst_sctp_enc_sink_chain() 621 " with ppid %u ordered %d pr %d pr_param %u", buffer, ppid, ordered, pr, in gst_sctp_enc_sink_chain() 640 length, sctpenc_pad->stream_id, ppid, ordered, pr, pr_param, in gst_sctp_enc_sink_chain() 701 get_config_from_caps (caps, &sctpenc_pad->ordered, in gst_sctp_enc_sink_event() 969 get_config_from_caps (const GstCaps * caps, gboolean * ordered, in get_config_from_caps() argument [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_logic.c | 83 boolean ordered) in lp_build_compare_ext() argument 107 op = ordered ? LLVMRealOEQ : LLVMRealUEQ; in lp_build_compare_ext() 110 op = ordered ? LLVMRealONE : LLVMRealUNE; in lp_build_compare_ext() 113 op = ordered ? LLVMRealOLT : LLVMRealULT; in lp_build_compare_ext() 116 op = ordered ? LLVMRealOLE : LLVMRealULE; in lp_build_compare_ext() 119 op = ordered ? LLVMRealOGT : LLVMRealUGT; in lp_build_compare_ext() 122 op = ordered ? LLVMRealOGE : LLVMRealUGE; in lp_build_compare_ext()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
D | IR.rst | 173 The usual 6 operations exist in two versions: 'ordered' and 175 NaN and if it is the case the ordered compares return false 180 Floating-point compare ordered equal 183 Floating-point compare ordered not-equal 186 Floating-point compare ordered less-than-or-equal 189 Floating-point compare ordered greater-or-equal 192 Floating-point compare ordered less-than 195 Floating-point compare ordered greater-than 218 Floating-point compare ordered: return true if both operands are ordered 222 Floating-point compare unordered: return false if no operands is ordered
|
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir_bb.cpp | 453 Pass::run(Program *prog, bool ordered, bool skipPhi) in run() argument 457 return doRun(prog, ordered, skipPhi); in run() 461 Pass::doRun(Program *prog, bool ordered, bool skipPhi) in doRun() argument 466 if (!doRun(Function::get(n), ordered, skipPhi)) in doRun() 473 Pass::run(Function *func, bool ordered, bool skipPhi) in run() argument 477 return doRun(func, ordered, skipPhi); in run() 481 Pass::doRun(Function *func, bool ordered, bool skipPhi) in doRun() argument 491 bbIter = ordered ? func->cfg.iteratorCFG() : func->cfg.iteratorDFS(); in doRun()
|
/third_party/vk-gl-cts/external/openglcts/docs/specs/ |
D | CTS_ARB_fragment_shader_interlock.txt | 39 Test verifies also two ordered interlock modes supported by this 55 * Create fragment shader for ordered layout qualifiers added by this 68 Expected result for ordered layout qualifires is renderbuffer filled with 77 ordered or unordered. Tests for unordered qualifiers would be
|
/third_party/freetype/src/sfnt/ |
D | ttkern.c | 51 FT_UInt32 avail = 0, ordered = 0; in tt_face_load_kern() local 155 ordered |= mask; in tt_face_load_kern() 164 face->kern_order_bits = ordered; in tt_face_load_kern()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | ttkern.c | 51 FT_UInt32 avail = 0, ordered = 0; in tt_face_load_kern() local 155 ordered |= mask; in tt_face_load_kern() 164 face->kern_order_bits = ordered; in tt_face_load_kern()
|
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/ |
D | ttkern.c | 52 FT_UInt32 avail = 0, ordered = 0; in tt_face_load_kern() local 156 ordered |= mask; in tt_face_load_kern() 165 face->kern_order_bits = ordered; in tt_face_load_kern()
|
/third_party/selinux/libsepol/cil/src/ |
D | cil_resolve_ast.c | 1190 static void __cil_ordered_list_init(struct cil_ordered_list **ordered) in __cil_ordered_list_init() argument 1192 *ordered = cil_malloc(sizeof(**ordered)); in __cil_ordered_list_init() 1194 (*ordered)->merged = CIL_FALSE; in __cil_ordered_list_init() 1195 (*ordered)->list = NULL; in __cil_ordered_list_init() 1196 (*ordered)->node = NULL; in __cil_ordered_list_init() 1199 static void __cil_ordered_list_destroy(struct cil_ordered_list **ordered) in __cil_ordered_list_destroy() argument 1201 cil_list_destroy(&(*ordered)->list, CIL_FALSE); in __cil_ordered_list_destroy() 1202 (*ordered)->node = NULL; in __cil_ordered_list_destroy() 1203 free(*ordered); in __cil_ordered_list_destroy() 1204 *ordered = NULL; in __cil_ordered_list_destroy() [all …]
|
D | cil_reset_ast.c | 34 class->ordered = CIL_FALSE; in cil_reset_class() 235 sens->ordered = CIL_FALSE; in cil_reset_sens() 240 cat->ordered = CIL_FALSE; in cil_reset_cat() 449 sid->ordered = CIL_FALSE; in cil_reset_sid()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/ |
D | INTEL_fragment_shader_ordering.txt | 149 that should be ordered. Instead, the region that will be ordered logically 164 ... read/modify/write image // ordered access guaranteed 170 ... update image again // ordered access guaranteed
|
/third_party/openGLES/extensions/INTEL/ |
D | INTEL_fragment_shader_ordering.txt | 149 that should be ordered. Instead, the region that will be ordered logically 164 ... read/modify/write image // ordered access guaranteed 170 ... update image again // ordered access guaranteed
|
/third_party/json/doc/mkdocs/docs/features/ |
D | object_order.md | 67 …tively, you can use a more sophisticated ordered map like [`tsl::ordered_map`](https://github.com/…
|
/third_party/node/deps/npm/node_modules/xdg-basedir/ |
D | readme.md | 51 Preference-ordered array of base directories to search for data files in addition to `.data`. 55 Preference-ordered array of base directories to search for configuration files in addition to `.con…
|
/third_party/rust/crates/cxx/syntax/ |
D | set.rs | 4 pub use self::ordered::OrderedSet; 7 mod ordered { module
|
D | map.rs | 6 pub use self::ordered::OrderedMap; 10 mod ordered { module
|
/third_party/gstreamer/gstplugins_bad/ext/webrtc/ |
D | webrtcdatachannel.c | 146 if (!channel->parent.ordered) in construct_open_packet() 453 channel->parent.ordered = !(reliability & 0x80); in _parse_control_packet() 469 channel->parent.ordered ? "true" : "false"); in _parse_control_packet() 702 channel->parent.ordered ? "true" : "false"); in webrtc_data_channel_start_negotiation() 782 gst_sctp_buffer_add_send_meta (buffer, ppid, channel->parent.ordered, in webrtc_data_channel_send_data() 845 gst_sctp_buffer_add_send_meta (buffer, ppid, channel->parent.ordered, in webrtc_data_channel_send_string()
|