Home
last modified time | relevance | path

Searched refs:head (Results 1 – 15 of 15) sorted by relevance

/rocksdb-6.9/tools/
Drun_flash_bench.sh280 head -1 $output_dir/report.txt >> $output_dir/report2.txt
284 head -1 $output_dir/report.txt >> $output_dir/report2.txt
288 head -1 $output_dir/report.txt >> $output_dir/report2.txt
298 head -1 $output_dir/report.txt >> $output_dir/report2.txt
308 head -1 $output_dir/report.txt >> $output_dir/report2.txt
318 head -1 $output_dir/report.txt >> $output_dir/report2.txt
322 head -1 $output_dir/report.txt >> $output_dir/report2.txt
326 head -1 $output_dir/report.txt >> $output_dir/report2.txt
330 head -1 $output_dir/report.txt >> $output_dir/report2.txt
340 head -1 $output_dir/report.txt >> $output_dir/report2.txt
[all …]
Drun_leveldb.sh157 head -1 $output_dir/report.txt >> $output_dir/report2.txt
160 head -1 $output_dir/report.txt >> $output_dir/report2.txt
163 head -1 $output_dir/report.txt >> $output_dir/report2.txt
166 head -1 $output_dir/report.txt >> $output_dir/report2.txt
169 head -1 $output_dir/report.txt >> $output_dir/report2.txt
172 head -1 $output_dir/report.txt >> $output_dir/report2.txt
Dauto_sanity_test.sh8 recent_commits=`git log | grep -e "^commit [a-z0-9]\+$"| head -n10 | sed -e 's/commit //g'`
9 commit_new=`echo "$recent_commits" | head -n1`
Danalyze_txn_stress_test.sh71 START=`head -1 /tmp/adds.txt | cut -d' ' -f 12 | cut -d+ -f1`
Dregression_test.sh160 COMMIT_ID=`git log | head -n1 | cut -c 8-`
/rocksdb-6.9/memtable/
Dhash_linklist_rep.cc209 bool LinkListContains(Node* head, const Slice& key) const;
258 Node* FindGreaterOrEqualInBucket(Node* head, const Slice& key) const;
259 Node* FindLessOrEqualInBucket(Node* head, const Slice& key) const;
328 Node* head) in LinkListIterator() argument
330 head_(head), in LinkListIterator()
392 void Reset(Node* head) { in Reset() argument
393 head_ = head; in Reset()
796 bool HashLinkListRep::LinkListContains(Node* head, in LinkListContains() argument
798 Node* x = FindGreaterOrEqualInBucket(head, user_key); in LinkListContains()
802 Node* HashLinkListRep::FindGreaterOrEqualInBucket(Node* head, in FindGreaterOrEqualInBucket() argument
[all …]
/rocksdb-6.9/utilities/transactions/
Dtransaction_lock_mgr.cc465 for (int tail = 0, head = 0; head < txn->GetDeadlockDetectDepth(); head++) { in IncrementWaiters() local
478 if (tail == head) { in IncrementWaiters()
482 auto next = queue_values[head]; in IncrementWaiters()
485 while (head != -1) { in IncrementWaiters()
486 assert(wait_txn_map_.Contains(queue_values[head])); in IncrementWaiters()
488 auto extracted_info = wait_txn_map_.Get(queue_values[head]); in IncrementWaiters()
489 path.push_back({queue_values[head], extracted_info.m_cf_id, in IncrementWaiters()
492 head = queue_parents[head]; in IncrementWaiters()
504 parent = head; in IncrementWaiters()
/rocksdb-6.9/db/
Dwrite_thread.cc282 void WriteThread::CreateMissingNewerLinks(Writer* head) { in CreateMissingNewerLinks() argument
284 Writer* next = head->link_older; in CreateMissingNewerLinks()
286 assert(next == nullptr || next->link_newer == head); in CreateMissingNewerLinks()
289 next->link_newer = head; in CreateMissingNewerLinks()
290 head = next; in CreateMissingNewerLinks()
691 Writer* head = newest_writer_.load(std::memory_order_acquire); in ExitAsBatchGroupLeader() local
692 if (head != last_writer || in ExitAsBatchGroupLeader()
693 !newest_writer_.compare_exchange_strong(head, nullptr)) { in ExitAsBatchGroupLeader()
701 assert(head != last_writer); in ExitAsBatchGroupLeader()
710 CreateMissingNewerLinks(head); in ExitAsBatchGroupLeader()
Dwrite_thread.h416 void CreateMissingNewerLinks(Writer* head);
/rocksdb-6.9/build_tools/
Dversion.sh9 cat include/rocksdb/version.h | grep MAJOR | head -n1 | awk '{print $3}'
12 cat include/rocksdb/version.h | grep MINOR | head -n1 | awk '{print $3}'
15 cat include/rocksdb/version.h | grep PATCH | head -n1 | awk '{print $3}'
Dupdate_dependencies.sh38 result=`ls -dr1v $result/*/ | head -n1`
46 result=`ls -dr1v $result/gcc-*[^fb]/ | head -n1`
52 result=`ls -1d $result/*/ | head -n1`
/rocksdb-6.9/third-party/folly/folly/synchronization/
DDistributedMutex-inl.h1448 auto head = folly::bit_cast<std::uintptr_t>(sleepers);
1449 waiter->next_.store(head, std::memory_order_relaxed);
1579 auto head = state_.exchange(kLocked, std::memory_order_acq_rel);
1580 recordTimedWaiterAndClearTimedBit(proxy.timedWaiters_, head);
1581 auto next = extractPtr<Waiter<Atomic>>(head);
1583 assert((head & kLocked) && (head != kLocked));
/rocksdb-6.9/docs/_posts/
D2017-09-28-rocksdb-5-8-released.markdown16 … bottom level can be executed in a dedicated thread pool. This alleviates head-of-line blocking in…
D2019-03-08-format-version-4.markdown27 …lock handles. This saves the encoding of `BlockHandle::offset` of the non-head index entries in ea…
/rocksdb-6.9/
DHISTORY.md416 … block handles. This saves the encoding of BlockHandle::offset of the non-head index entries in ea…
588 … bottom level can be executed in a dedicated thread pool. This alleviates head-of-line blocking in…