| /system/ulib/region-alloc/ |
| A D | region-alloc.cpp | 121 auto after = before--; in SubtractRegion() 125 if (before.IsValid()) { in SubtractRegion() 126 before_end = before->base + before->size; // exclusive end in SubtractRegion() 169 if (region.base == before->base) { in SubtractRegion() 206 if (before.IsValid()) { in SubtractRegion() 207 ZX_DEBUG_ASSERT(region.base >= before->base); in SubtractRegion() 529 auto after = before--; in AddRegionToAvailLocked() 533 if (before.IsValid()) { in AddRegionToAvailLocked() 534 ZX_DEBUG_ASSERT(before->base <= region->base); in AddRegionToAvailLocked() 536 uint64_t before_end = (before->base + before->size); // exclusive end in AddRegionToAvailLocked() [all …]
|
| /system/ulib/fbl/include/fbl/ |
| A D | intrusive_double_list.h | 203 void insert(ValueType& before, const PtrType& ptr) { insert(before, PtrType(ptr)); } 205 internal_insert(&before, std::move(ptr)); 210 auto before = iter.node_; 211 ZX_DEBUG_ASSERT(before != nullptr); 219 ZX_DEBUG_ASSERT(before == head_); 228 … auto& prev_ns = NodeTraits::node_state(internal::is_sentinel_ptr(before) ? *head_ : *before); 234 auto& tgt_next = (head_ == before) 546 ZX_DEBUG_ASSERT(before != nullptr); 555 ZX_DEBUG_ASSERT(before == head_); 568 … auto& prev_ns = NodeTraits::node_state(internal::is_sentinel_ptr(before) ? *head_ : *before); [all …]
|
| /system/utest/zxcrypt/ |
| A D | volume.cpp | 132 uint8_t before[kBlockSize]; in TestUnlock() local 133 uint8_t after[sizeof(before)]; in TestUnlock() 142 read(parent.get(), before, sizeof(before)); in TestUnlock() 157 EXPECT_EQ(memcmp(before, after, sizeof(before)), 0); in TestUnlock()
|
| /system/banjo/ddk-protocol-block/ |
| A D | block.banjo | 46 /// meaning that previous operations will complete before it starts 65 /// Require that this operation complete before any subsequent 68 /// Prevents later operations from being reordered before this one. 82 /// before the queue() method returns. 98 /// before the queue() method returns.
|
| /system/utest/libzx/ |
| A D | zx-test.cpp | 334 zx::ticks before = zx::ticks::now(); in ticks_test() local 335 ASSERT_GT(before.get(), 0); in ticks_test() 336 zx::ticks after = before + zx::ticks(1); in ticks_test() 338 ASSERT_LT(before.get(), after.get()); in ticks_test() 339 ASSERT_TRUE(before < after); in ticks_test() 341 ASSERT_EQ(before.get(), after.get()); in ticks_test() 342 ASSERT_TRUE(before == after); in ticks_test() 353 ASSERT_LE(before.get(), after.get()); in ticks_test() 354 ASSERT_TRUE(before <= after); in ticks_test()
|
| /system/ulib/framebuffer/ |
| A D | README.md | 4 library's limitations before using it.
|
| /system/uapp/ping/ |
| A D | ping.cpp | 260 zx_ticks_t before = zx_ticks_get(); in main() local 298 uint64_t usec = (after - before) / ticks_per_usec; in main()
|
| /system/fidl/zircon-usb-peripheral/ |
| A D | usb-peripheral.fidl | 40 // Must be called before BindFunctions or after ClearFunctions.
|
| /system/banjo/ddk-protocol-nand/ |
| A D | nand.banjo | 117 /// via the callback. The callback may be called before the Queue() method returns. 122 /// This should only be called before writing any data to the nand, and the
|
| /system/banjo/ddk-protocol-hidbus/ |
| A D | hidbus.banjo | 52 /// ifc->io_queue before this function returns. It is an error to start an
|
| /system/banjo/ddk-protocol-usb-request/ |
| A D | usb-request.banjo | 25 /// (Filled in by processor before |UsbRequestComplete()| is called)
|
| /system/fidl/fuchsia-tracelink/ |
| A D | tracelink.fidl | 76 // the provider to wait for the Start() message before continuing if it 77 // wishes to not drop trace records before Start() is received.
|
| /system/dev/misc/cpu-trace/ |
| A D | intel-pm.md | 26 This must be called before staging a configuration and starting a trace.
|
| /system/fidl/fuchsia-cobalt/ |
| A D | cobalt.fidl | 352 // call before the StartTimer() call. 367 // EndTimer() calls with this id before the timeout and without any 378 // already received the corresponding EndTimer() call before receiving this 381 // corresponding EndTimer() call before the timeout then the timer will be 415 // call before the StartTimer() call. 420 // EndTimer() calls with this id before the timeout and without any 431 // already received the corresponding EndTimer() call before receiving this 434 // corresponding EndTimer() call before the timeout then the timer will be
|
| /system/banjo/ddk-protocol-display-controller/ |
| A D | display-controller.banjo | 96 /// Out parameters will be populated before on_displays_changed returns. 144 /// Rotations are applied counter-clockwise, and are applied before reflections. 178 /// channel with alpha_layer_val before blending. 330 /// The function will only be called once, and it will be called before any other
|
| /system/fidl/fuchsia-hardware-display/ |
| A D | display-controller.fidl | 95 // Rotations are applied counter-clockwise, and are applied before reflections. 225 // waited up or signaled as appropriate before its resources are released. 266 // pending config before being added to the second display's pending config. It 301 // premultiplies the color channel with |val| before blending. 336 // wait for ZX_EVENT_SIGNALED on the object before presenting the image.
|
| /system/fidl/fuchsia-hardware-tee/ |
| A D | tee.fidl | 76 // Each operation must flow through the device driver and the trusted operating system before
|
| /system/host/banjo/include/banjo/ |
| A D | formatter.h | 116 ScopedBool before(blank_space_before_colon_, false); in OnInterfaceMethod()
|
| /system/host/fidl/include/fidl/ |
| A D | formatter.h | 116 ScopedBool before(blank_space_before_colon_, false); in OnInterfaceMethod()
|
| /system/ulib/cobalt-client/ |
| A D | README.md | 27 // Just as before, but this is when we write the remote logger request, we
|
| /system/banjo/ddk-protocol-ethernet/ |
| A D | ethernet.banjo | 125 /// before transmission itself completes, but MUST NOT be called from within the queue_tx()
|
| /system/fidl/fuchsia-io/ |
| A D | io.fidl | 67 // Truncate the object before usage. 71 // Seek to the end of the object before all writes.
|