Searched defs:slot_id (Results 1 - 12 of 12) sorted by relevance

/external/valgrind/memcheck/tests/solaris/
H A Dpkcs11.c36 CK_SLOT_ID slot_id = slots[i]; local
39 ret = C_GetMechanismList(slot_id, NULL, &mech_count);
51 ret = C_GetMechanismList(slot_id, mechs, &mech_count);
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/learner/common/accumulators/
H A Dfeature-stats-accumulator.h48 void AddStats(uint32 slot_id, uint32 class_id, uint32 partition_id, argument
50 accumulator_(stats, &feature_column_stats_[slot_id][ClassPartitionKey(
57 StatsType GetStats(uint32 slot_id, uint32 class_id, uint32 partition_id, argument
59 auto it = feature_column_stats_[slot_id].find(
61 return it != feature_column_stats_[slot_id].end() ? it->second
66 FeatureStats GetFeatureStats(uint32 slot_id) const {
67 return feature_column_stats_[slot_id];
/external/libese/apps/weaver/
H A Dweaver.c242 uint8_t slot_id[4]; local
243 put_uint32(slot_id, slotId);
244 tx[2].base = slot_id;
245 tx[2].len = sizeof(slot_id);
296 uint8_t slot_id[4]; local
297 put_uint32(slot_id, slotId);
298 tx[2].base = slot_id;
299 tx[2].len = sizeof(slot_id);
381 uint8_t slot_id[4]; local
382 put_uint32(slot_id, slotI
[all...]
/external/v8/src/compiler/
H A Dinstruction-selector-impl.h296 int slot_id = secondary_location.AsCalleeFrameSlot(); local
297 return UnallocatedOperand(reg_id, slot_id, virtual_register);
H A Dinstruction.h230 UnallocatedOperand(int reg_id, int slot_id, int virtual_register) argument
233 value_ |= SecondaryStorageField::encode(slot_id);
H A Dbytecode-graph-builder.cc541 VectorSlotPair BytecodeGraphBuilder::CreateVectorSlotPair(int slot_id) { argument
543 if (slot_id >= FeedbackVector::kReservedIndexCount) {
544 slot = feedback_vector()->ToSlot(slot_id);
1164 int const slot_id = bytecode_iterator().GetIndexOperand(1); local
1165 VectorSlotPair pair = CreateVectorSlotPair(slot_id);
1324 int const slot_id = bytecode_iterator().GetIndexOperand(3); local
1325 VectorSlotPair feedback = CreateVectorSlotPair(slot_id);
1327 float const frequency = ComputeCallFrequency(slot_id);
1483 int const slot_id = bytecode_iterator().GetIndexOperand(3); local
1484 VectorSlotPair feedback = CreateVectorSlotPair(slot_id);
[all...]
H A Dregister-allocator.cc2427 int slot_id = preassigned.second; local
2431 spill->set_assigned_slot(slot_id);
/external/libchrome/crypto/
H A Dnss_util.cc465 CK_SLOT_ID slot_id) {
473 PK11SlotInfo* slot = SECMOD_LookupSlot(chaps_module->moduleID, slot_id);
475 LOG(ERROR) << "TPM slot " << slot_id << " not found.";
514 CK_SLOT_ID slot_id) {
530 base::Bind(&NSSInitSingleton::InitializeTPMTokenOnWorkerThread, slot_id,
943 CK_SLOT_ID slot_id) {
944 g_nss_singleton.Get().InitializeTPMForChromeOSUser(username_hash, slot_id);
463 GetTPMSlotForIdOnWorkerThread( SECMODModule* chaps_module, CK_SLOT_ID slot_id) argument
513 InitializeTPMForChromeOSUser(const std::string& username_hash, CK_SLOT_ID slot_id) argument
941 InitializeTPMForChromeOSUser( const std::string& username_hash, CK_SLOT_ID slot_id) argument
/external/v8/src/
H A Dcode-stubs.cc524 compiler::Node* slot_id,
725 slot_id);
732 compiler::Node* slot_id, compiler::Node* feedback_vector,
918 slot_id);
926 compiler::Node* slot_id, compiler::Node* feedback_vector,
1079 slot_id);
1087 compiler::Node* divisor, compiler::Node* slot_id,
1299 slot_id);
1306 compiler::Node* divisor, compiler::Node* slot_id,
1460 slot_id);
521 Generate(CodeStubAssembler* assembler, compiler::Node* lhs, compiler::Node* rhs, compiler::Node* slot_id, compiler::Node* feedback_vector, compiler::Node* context) argument
730 Generate( CodeStubAssembler* assembler, compiler::Node* lhs, compiler::Node* rhs, compiler::Node* slot_id, compiler::Node* feedback_vector, compiler::Node* context) argument
924 Generate( CodeStubAssembler* assembler, compiler::Node* lhs, compiler::Node* rhs, compiler::Node* slot_id, compiler::Node* feedback_vector, compiler::Node* context) argument
1085 Generate( CodeStubAssembler* assembler, compiler::Node* dividend, compiler::Node* divisor, compiler::Node* slot_id, compiler::Node* feedback_vector, compiler::Node* context) argument
1304 Generate( CodeStubAssembler* assembler, compiler::Node* dividend, compiler::Node* divisor, compiler::Node* slot_id, compiler::Node* feedback_vector, compiler::Node* context) argument
[all...]
/external/curl/lib/vtls/
H A Dnss.c423 const int slot_id = (cacert) ? 0 : 1; local
424 char *slot_name = aprintf("PEM Token #%d", slot_id);
/external/v8/src/interpreter/
H A Dinterpreter-assembler.cc545 Node* slot_id) {
547 Node* call_count_slot = IntPtrAdd(slot_id, IntPtrConstant(1));
557 Node* slot_id,
582 Node* feedback_element = LoadFixedArrayElement(feedback_vector, slot_id);
595 IncrementCallCount(feedback_vector, slot_id);
630 IncrementCallCount(feedback_vector, slot_id);
675 CreateWeakCellInFeedbackVector(feedback_vector, SmiTag(slot_id),
684 CreateAllocationSiteInFeedbackVector(feedback_vector, SmiTag(slot_id));
699 feedback_vector, slot_id,
710 IncrementCallCount(feedback_vector, slot_id);
544 IncrementCallCount(Node* feedback_vector, Node* slot_id) argument
555 CallJSWithFeedback(Node* function, Node* context, Node* first_arg, Node* arg_count, Node* slot_id, Node* feedback_vector, TailCallMode tail_call_mode) argument
751 Construct(Node* constructor, Node* context, Node* new_target, Node* first_arg, Node* arg_count, Node* slot_id, Node* feedback_vector) argument
[all...]
H A Dinterpreter.cc2157 Node* slot_id = __ BytecodeOperandIdx(3); local
2162 slot_id, feedback_vector, tail_call_mode);
2335 Node* slot_id = __ BytecodeOperandIdx(3); local
2339 args_count, slot_id, feedback_vector);

Completed in 467 milliseconds