Home
last modified time | relevance | path

Searched refs:top (Results 1 – 25 of 99) sorted by relevance

1234

/system/chre/util/tests/
Dpriority_queue_test.cc119 EXPECT_DEATH(q.top(), ""); in TEST()
125 EXPECT_EQ(1, q.top()); in TEST()
128 EXPECT_EQ(3, q.top()); in TEST()
130 EXPECT_EQ(2, q.top()); in TEST()
132 EXPECT_EQ(1, q.top()); in TEST()
162 EXPECT_EQ(1, q.top()); in TEST()
167 EXPECT_EQ(3, q.top()); in TEST()
180 EXPECT_EQ(i, q.top()); in TEST()
196 EXPECT_EQ(0, q.top().getValue()); in TEST()
197 EXPECT_EQ(0, q.top().getIndex()); in TEST()
[all …]
/system/unwinding/libunwindstack/
DDwarfOp.cpp1692 AddressType top = stack_[0]; in op_rot() local
1695 stack_[2] = top; in op_rot()
1711 AddressType top = StackPop(); in op_and() local
1712 stack_[0] &= top; in op_and()
1718 AddressType top = StackPop(); in op_div() local
1719 if (top == 0) { in op_div()
1723 SignedType signed_divisor = static_cast<SignedType>(top); in op_div()
1731 AddressType top = StackPop(); in op_minus() local
1732 stack_[0] -= top; in op_minus()
1738 AddressType top = StackPop(); in op_mod() local
[all …]
/system/sepolicy/tests/
Dcombine_maps.py35 def Combine(top, bottom): argument
36 bottom.types.update(top.types)
37 bottom.typeattributes.update(top.typeattributes)
39 for top_ta in top.typeattributesets:
40 top_type_set = top.typeattributesets[top_ta]
/system/memory/libmemunreachable/
DPtracerThread.cpp55 mprotect(top(), page_size_, PROT_NONE); in Stack()
58 void* top() { in top() function in android::Stack
72 if (stack_->top() == nullptr) { in PtracerThread()
102 child_pid_ = clone(proxy, stack_->top(), CLONE_VM | CLONE_FS | CLONE_FILES /*|CLONE_UNTRACED*/, in Start()
/system/extras/simpleperf/scripts/purgatorio/templates/
Dstyles.css37 top: 0;
45 top: 0;
54 top: 2%;
105 top: 0;
/system/teeui/test/example_config/
DREADME65 …"native-test-flag": "--powerButtonTop=<distance from the top of the power button to the top of the…
68 … "--powerButtonBottom=<distance from the bottom of the power button to the top of the screen in mm…
71 …"native-test-flag": "--volUpButtonTop=<distance from the top of the UP volume button to the top of…
74 …-volUpButtonBottom=<distance from the bottom of the UP power button to the top of the screen in mm…
/system/chre/util/include/chre/util/
Dpriority_queue.h122 ElementType &top();
132 const ElementType &top() const;
Dpriority_queue_impl.h86 ElementType &PriorityQueue<ElementType, CompareFunction>::top() { in top() function
91 const ElementType &PriorityQueue<ElementType, CompareFunction>::top() const { in top() function
/system/core/property_service/libpropertyinfoparser/
Dproperty_info_parser.cpp35 int top = array_length - 1; in Find() local
36 while (top >= bottom) { in Find()
37 int search = (top + bottom) / 2; in Find()
43 if (cmp > 0) top = search - 1; in Find()
/system/extras/simpleperf/
DCallChainJoiner.cpp76 CacheNode* top = chain.back(); in AddCallChain() local
77 while ((top = GetParent(top)) != nullptr) { in AddCallChain()
78 if (top->sp == chain.back()->sp) { in AddCallChain()
83 for (auto it = chain.rbegin(); it != chain.rend() && (*it)->sp == top->sp; ++it) { in AddCallChain()
84 if ((*it)->ip == top->ip) { in AddCallChain()
96 ips.push_back(top->ip); in AddCallChain()
97 sps.push_back(top->sp); in AddCallChain()
/system/tools/xsdc/
DOWNERS1 # Default code reviewers picked from top 3 or more developers.
/system/testing/gtest_extras/
DOWNERS1 # Default code reviewers picked from top 3 or more developers.
/system/media/
DOWNERS1 # Default code reviewers picked from top 3 or more developers.
/system/extras/simpleperf/scripts/
DCONTRIBUTING.md9 Changes are normally reviewed on top of the AOSP `master` branch.
/system/core/shell_and_utilities/
DREADME.md68 tac tail tar taskset tee test time timeout top touch tr traceroute
102 tac tail tar taskset tee test time timeout top touch tr traceroute
136 tac tail tar taskset tee **test** time timeout top touch tr traceroute
170 tee time timeout top touch tr traceroute traceroute6 true truncate
202 tac tail tar taskset tee time timeout top touch tr **traceroute** **traceroute6**
230 tail tar taskset tee time timeout top touch tr true truncate tty ulimit
255 sysctl tac tail tar taskset tee time timeout **top** touch tr true truncate
265 sendevent start stop top
287 newfs\_msdos ps prlimit renice sendevent start stop top uptime watchprops
312 top touch umount uptime vmstat watchprops wipe
[all …]
/system/chre/core/
Dtimer_pool.cc85 (!mTimerRequests.empty() && mTimerRequests.top() > timerRequest); in setTimer()
209 (mTimerRequests.top().instanceId != kSystemInstanceId); in popTimerRequestLocked()
244 TimerRequest &currentTimerRequest = mTimerRequests.top(); in handleExpiredTimersAndScheduleNextLocked()
/system/tools/hidl/c2hal/test/
Dsimple.h54 int left, int top, int width, int height);
/system/core/fs_mgr/
Dfs_mgr_overlayfs.cpp395 auto top = dir + kOverlayTopDir; in fs_mgr_overlayfs_setup_dir() local
401 if (mkdir(top.c_str(), 0755) != 0 && errno != EEXIST) { in fs_mgr_overlayfs_setup_dir()
402 PERROR << "mkdir " << top; in fs_mgr_overlayfs_setup_dir()
408 return top; in fs_mgr_overlayfs_setup_dir()
566 const auto top = overlay + kOverlayTopDir; in fs_mgr_overlayfs_teardown_one() local
568 if (!fs_mgr_access(top)) { in fs_mgr_overlayfs_teardown_one()
575 const auto oldpath = top + (cleanup_all ? "" : ("/" + partition_name)); in fs_mgr_overlayfs_teardown_one()
577 : top + "/." + partition_name + ".teardown"; in fs_mgr_overlayfs_teardown_one()
593 if (!rmdir(top.c_str())) { in fs_mgr_overlayfs_teardown_one()
599 std::unique_ptr<DIR, decltype(&closedir)> dir(opendir(top.c_str()), closedir); in fs_mgr_overlayfs_teardown_one()
[all …]
/system/logging/logd/
DSerializedLogBuffer.cpp258 LogWithId top = state.PopNextUnreadLog(); in FlushTo() local
259 auto* entry = top.entry; in FlushTo()
260 auto log_id = top.log_id; in FlushTo()
/system/chre/external/flatbuffers/
DREADME.md4 changes described in the comment at the top of flatbuffers.h, and apply them to
/system/sepolicy/prebuilts/api/30.0/public/
Dsdcardd.te33 # Allow running on top of expanded storage
/system/sepolicy/prebuilts/api/29.0/public/
Dsdcardd.te32 # Allow running on top of expanded storage
/system/chre/platform/linux/task_util/
Dtask_manager.cc114 task = mQueue.top(); in run()
/system/libvintf/analyze_matrix/
Dhals_for_release.py95 top = os.environ.get("ANDROID_BUILD_TOP")
96 if top and not args.input:
97 args.input = os.path.join(top, "hardware", "interfaces", "compatibility_matrices")
/system/sepolicy/prebuilts/api/33.0/public/
Dsdcardd.te34 # Allow running on top of expanded storage

1234