Home
last modified time | relevance | path

Searched refs:dest_value (Results 1 – 4 of 4) sorted by relevance

/external/selinux/checkpolicy/
Dmodule_compiler.h31 uint32_t * dest_value, uint32_t * datum_value);
45 uint32_t * dest_value, uint32_t * datum_value);
Dmodule_compiler.c155 uint32_t * dest_value, uint32_t scope) in create_symbol() argument
165 decl->decl_id, dest_value); in create_symbol()
167 if (ret == 1 && dest_value) { in create_symbol()
174 *dest_value = ((level_datum_t *)s)->level->sens; in create_symbol()
176 *dest_value = s->value; in create_symbol()
198 uint32_t * dest_value, uint32_t * datum_value) in declare_symbol() argument
201 int ret = create_symbol(symbol_type, key, datum, dest_value, SCOPE_DECL); in declare_symbol()
717 uint32_t * dest_value, uint32_t * datum_value) in require_symbol() argument
720 int ret = create_symbol(symbol_type, key, datum, dest_value, SCOPE_REQ); in require_symbol()
/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_shader_base.cpp551 auto dest_value = varvec_from_nir(instr->dest, instr->num_components); in emit_load_local_shared() local
553 emit_instruction(new LDSReadInstruction(address, dest_value)); in emit_load_local_shared()
588 auto dest_value = from_nir(instr->dest, 0); in emit_atomic_local_shared() local
594 emit_instruction(new LDSAtomicInstruction(dest_value, value, value2, address, op)); in emit_atomic_local_shared()
596 emit_instruction(new LDSAtomicInstruction(dest_value, value, address, op)); in emit_atomic_local_shared()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1112 ScopedPyObjectPtr dest_value(PyObject_GetItem(map.get(), next.get())); in InitAttributes() local
1113 if (source_value.get() == NULL || dest_value.get() == NULL) { in InitAttributes()
1117 dest_value.get(), "MergeFrom", "O", source_value.get())); in InitAttributes()