Home
last modified time | relevance | path

Searched refs:use_count (Results 1 - 22 of 22) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_opt_vpm.c45 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 Dvc4_opt_coalesce_ff_writes.c42 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 Djs-inlining-heuristic.cc319 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 Dnode.cc289 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 Dbinary_writer.hpp734 @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 Dplustek-pp_sysdep.h212 /* 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 Dir3_cp.c251 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 Dir3_print.c82 mesa_log_stream_printf(stream, "%03u: ", instr->use_count); in print_instr_name()
H A Dir3.h430 * 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 Dnode_threadsafe_cow-inl.h10 if (data_.use_count() > 1l) { in write()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_crypto.h86 /* use_count is the number of encryption applied with this key.
88 uint64_t use_count; member
H A Dngtcp2_crypto.c76 (*pckm)->use_count = 0; in ngtcp2_crypto_km_nocopy_new()
H A Dngtcp2_conn.c4232 ++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 Danv_nir_apply_pipeline_layout.c58 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 Dzink_descriptors.h114 unsigned use_count; member
H A Dzink_descriptors_lazy.c281 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 Dsb_valtable.cpp250 unsigned value::use_count() { in use_count() function in r600_sb::value
H A Dsb_gcm.cpp696 c += v->use_count(); in get_uc_vec()
H A Dsb_ir.h595 unsigned use_count();
/third_party/node/deps/v8/src/parsing/
H A Dscanner-character-streams.cc739 DCHECK_EQ(chunks_.use_count(), 1); in FetchChunk()
/third_party/rust/crates/cxx/tests/ffi/
H A Dtests.cc598 return weak.use_count();
/third_party/json/tests/abi/include/nlohmann/
H A Djson_v3_10_5.hpp14009 @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...]

Completed in 52 milliseconds