/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_opt_vpm.c | 45 uint32_t use_count[c->num_temps]; in qir_opt_vpm() local 46 memset(&use_count, 0, sizeof(use_count)); in qir_opt_vpm() 52 use_count[temp]++; in qir_opt_vpm() 84 if (use_count[temp] != 1) in qir_opt_vpm()
|
H A D | vc4_opt_coalesce_ff_writes.c | 42 uint32_t use_count[c->num_temps]; in qir_opt_coalesce_ff_writes() local 43 memset(&use_count, 0, sizeof(use_count)); in qir_opt_coalesce_ff_writes() 49 use_count[temp]++; in qir_opt_coalesce_ff_writes() 67 if (use_count[temp] != 1) in qir_opt_coalesce_ff_writes()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-inlining-heuristic.cc | 319 NodeAndIndex* uses_buffer, size_t* use_count, in CollectStateValuesOwnedUses() 326 if (!CollectStateValuesOwnedUses(node, input, uses_buffer, use_count, in CollectStateValuesOwnedUses() 331 if (*use_count >= max_uses) return false; in CollectStateValuesOwnedUses() 332 uses_buffer[*use_count] = {state_values, i}; in CollectStateValuesOwnedUses() 333 (*use_count)++; in CollectStateValuesOwnedUses() 371 NodeAndIndex* uses_buffer, size_t* use_count, in CollectFrameStateUniqueUses() 376 if (*use_count >= max_uses) return false; in CollectFrameStateUniqueUses() 377 uses_buffer[*use_count] = {frame_state, FrameState::kFrameStateStackInput}; in CollectFrameStateUniqueUses() 378 (*use_count)++; in CollectFrameStateUniqueUses() 381 use_count, max_use in CollectFrameStateUniqueUses() 318 CollectStateValuesOwnedUses(Node* node, Node* state_values, NodeAndIndex* uses_buffer, size_t* use_count, size_t max_uses) CollectStateValuesOwnedUses() argument 370 CollectFrameStateUniqueUses(Node* node, FrameState frame_state, NodeAndIndex* uses_buffer, size_t* use_count, size_t max_uses) CollectFrameStateUniqueUses() argument [all...] |
H A D | node.cc | 289 int use_count = 0; in UseCount() local 291 ++use_count; in UseCount() 293 return use_count; in UseCount()
|
/third_party/json/include/nlohmann/detail/output/ |
H A D | binary_writer.hpp | 734 @param[in] use_count whether to use '#' prefixes (optimized format) 739 void write_ubjson(const BasicJsonType& j, const bool use_count, in write_ubjson() argument 806 JSON_ASSERT(use_count); in write_ubjson() 824 if (use_count) in write_ubjson() 832 write_ubjson(el, use_count, use_type, prefix_required, use_bjdata); in write_ubjson() 835 if (!use_count) in write_ubjson() 852 JSON_ASSERT(use_count); in write_ubjson() 857 if (use_count) in write_ubjson() 878 if (!use_count) in write_ubjson() 890 if (!write_bjdata_ndarray(*j.m_value.object, use_count, use_typ in write_ubjson() 1618 write_bjdata_ndarray(const typename BasicJsonType::object_t& value, const bool use_count, const bool use_type) write_bjdata_ndarray() argument [all...] |
/third_party/backends/backend/ |
H A D | plustek-pp_sysdep.h | 212 /* The use_count of exec_domain and binfmt changed in 2.1.23 */ 219 # define INCRCOUNT(p) ((p)->use_count++) 220 # define CURRCOUNT(p) ((p)->use_count) 221 # define DECRCOUNT(p) ((p)->use_count--)
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_cp.c | 251 assert(instr->use_count > 0); in unuse() 253 if (--instr->use_count == 0) { in unuse() 373 reg->def->instr->use_count++; in reg_cp() 696 src->use_count++; in ir3_cp()
|
H A D | ir3_print.c | 82 mesa_log_stream_printf(stream, "%03u: ", instr->use_count); in print_instr_name()
|
H A D | ir3.h | 430 * TODO we should remove the per-pass data like this and 'use_count' 442 int use_count; /* currently just updated/used by cp */ member
|
/third_party/node/src/ |
H A D | node_threadsafe_cow-inl.h | 10 if (data_.use_count() > 1l) { in write()
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_crypto.h | 86 /* use_count is the number of encryption applied with this key. 88 uint64_t use_count; member
|
H A D | ngtcp2_crypto.c | 76 (*pckm)->use_count = 0; in ngtcp2_crypto_km_nocopy_new()
|
H A D | ngtcp2_conn.c | 4232 ++cc->ckm->use_count; in conn_write_pkt() 4431 ++cc.ckm->use_count; in ngtcp2_conn_write_single_frame_pkt() 8243 tx_ckm->use_count >= pktns->crypto.ctx.max_encryption && in conn_prepare_key_update()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_nir_apply_pipeline_layout.c | 58 uint8_t *use_count; member 92 if (state->set[set].use_count[binding] < UINT8_MAX) in add_binding() 93 state->set[set].use_count[binding]++; in add_binding() 1437 state.set[s].use_count = rzalloc_array(mem_ctx, uint8_t, count); in anv_nir_apply_pipeline_layout() 1470 if (state.set[set].use_count[b] == 0) in anv_nir_apply_pipeline_layout() 1483 if (state.set[set].use_count[b] == 0) in anv_nir_apply_pipeline_layout() 1495 uint16_t score = ((uint16_t)state.set[set].use_count[b] << 7) / in anv_nir_apply_pipeline_layout() 1607 if (state.set[set].use_count[binding] == 0) in anv_nir_apply_pipeline_layout()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_descriptors.h | 114 unsigned use_count; member
|
H A D | zink_descriptors_lazy.c | 281 pg->dd->pool_key[desc_set]->use_count++; in zink_descriptor_program_init_lazy() 361 pg->dd->pool_key[i]->use_count--; in zink_descriptor_program_deinit_lazy() 703 if (key->use_count) in zink_batch_descriptor_reset_lazy()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_valtable.cpp | 250 unsigned value::use_count() { in use_count() function in r600_sb::value
|
H A D | sb_gcm.cpp | 696 c += v->use_count(); in get_uc_vec()
|
H A D | sb_ir.h | 595 unsigned use_count();
|
/third_party/node/deps/v8/src/parsing/ |
H A D | scanner-character-streams.cc | 739 DCHECK_EQ(chunks_.use_count(), 1); in FetchChunk()
|
/third_party/rust/crates/cxx/tests/ffi/ |
H A D | tests.cc | 598 return weak.use_count();
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 14009 @param[in] use_count whether to use '#' prefixes (optimized format) 14013 void write_ubjson(const BasicJsonType& j, const bool use_count, 14079 JSON_ASSERT(use_count); 14095 if (use_count) 14103 write_ubjson(el, use_count, use_type, prefix_required); 14106 if (!use_count) 14123 JSON_ASSERT(use_count); 14128 if (use_count) 14149 if (!use_count) 14167 JSON_ASSERT(use_count); [all...] |