Searched refs:after (Results 1 - 13 of 13) sorted by relevance

/fuchsia/zircon/kernel/lib/pow2_range_allocator/
H A Dpow2_range_allocator.cpp63 * finding the block which should come after this block in the list. */
65 p2ra_block_t* after = list_peek_head_type(l, p2ra_block_t, node); local
68 while (after) {
70 __UNUSED uint after_len = 1u << after->bucket;
71 DEBUG_ASSERT((block->start >= (after->start + after_len)) ||
72 (after->start >= (block->start + block_len)));
74 if (after->start > block->start) {
75 list_add_before(&after->node, &block->node);
80 after = list_next_type(l, &after
[all...]
/fuchsia/zircon/system/ulib/region-alloc/
H A Dregion-alloc.cpp121 auto after = before--; local
202 // which come after us, finishing by trimming the front of (at most) one of
203 // the regions which comes after us. At no point in time do we need to
234 // While there are regions whose base address comes after the base address
240 // 3) Stop because all remaining regions start after the end of our
242 while (after.IsValid()) {
243 ZX_DEBUG_ASSERT(after->base > region.base);
246 if (after->base >= region_end)
250 // 1) Advance after, re-naming the old 'after' t
[all...]
/fuchsia/zircon/third_party/lib/acpica/source/tools/acpisrc/
H A Dasconvrt.c119 * DESCRIPTION: Check for an open brace after each if/else/do (etc.)
395 * DESCRIPTION: Remove an extra space after a period.
429 printf ("Removed %d extra blanks after a period: %s\n",
581 * Check for exactly one blank line after the copyright header
602 AcpiOsPrintf ("Found multiple blank lines after copyright\n");
605 /* If no blank line after header, insert one */
610 AcpiOsPrintf ("Inserted blank line after copyright\n");
1527 /* Already present, add spaces after to align structure members */
1538 /* Note: This code depends on a single space after the brace */
/fuchsia/zircon/system/uapp/ping/
H A Dping.cpp130 fprintf(stderr, "ping: Timed out after one second\n");
140 zx_ticks_t after = zx_ticks_get(); local
142 uint64_t usec = (after - before) / ticks_per_usec;
/fuchsia/zircon/system/utest/libzx/
H A Dzx-test.cpp326 zx::ticks after = before + zx::ticks(1); local
328 ASSERT_LT(before.get(), after.get());
329 ASSERT_TRUE(before < after);
330 after -= zx::ticks(1);
331 ASSERT_EQ(before.get(), after.get());
332 ASSERT_TRUE(before == after);
342 after = zx::ticks::now();
343 ASSERT_LE(before.get(), after.get());
344 ASSERT_TRUE(before <= after);
/fuchsia/zircon/third_party/ulib/musl/src/thread/
H A Dallocate.c94 size_t size, size_t before, size_t after,
97 region->iov_len = before + size + after;
92 map_block(zx_handle_t parent_vmar, zx_handle_t vmo, size_t vmo_offset, size_t size, size_t before, size_t after, struct iovec* mapping, struct iovec* region) argument
/fuchsia/zircon/make/
H A Dmodule-userapp.mk38 # The static profile runtime library must come after all static libraries
H A Dbuild.mk157 # the manifest must be computed *after* the input file is produced (to get the
172 # Extract the part after the = for each line
H A Dmodule-userlib.mk46 # The static profile runtime library must come after all static libraries
/fuchsia/zircon/third_party/lib/acpica/generate/unix/
H A DMakefile.config175 -Wdeclaration-after-statement\
/fuchsia/zircon/system/utest/ramdisk/
H A Dramdisk.cpp287 ASSERT_EQ(open(blockpath, O_RDONLY), -1, "Ramdisk is visible in /dev after destruction");
493 ASSERT_EQ(ioctl_block_get_fifos(ramdisk->fd(), &fifo), expected, "Failed to get FIFO after closing");
1342 // Put the ramdisk to sleep after 1 block (complete transaction).
1379 // Put the ramdisk to sleep after 1 block (partial transaction).
1433 uint64_t after; member in struct:tests::wake_args
1462 } while (counts.received < wake->after);
1517 wake.after = fbl::count_of(requests);
1552 wake.after = 1;
/fuchsia/zircon/third_party/lib/acpica/source/tools/examples/
H A Dextables.c363 Use native instr after SLP_TYPx (V3) : 0
/fuchsia/zircon/third_party/ulib/jemalloc/bin/
H A Djeprof.in300 # error() and cleanup() function anytime here after.
1052 if --cum is specified. If a number is present after 'top', the
1148 $SYMBOL_PAGE =~ m,[^/]+$,; # matches everything after the last slash
1171 $HEAP_PAGE =~ m,[^/]+$,; # matches everything after the last slash
1174 $GROWTH_PAGE =~ m,[^/]+$,; # matches everything after the last slash
1177 $CONTENTION_PAGE =~ m,[^/]+$,; # matches everything after the last slash
1180 $PROFILE_PAGE =~ m,[^/]+$,; # matches everything after the last slash
3733 # after referencing $slots[$i] is reading the very first header.
3735 # errors. And everything after the header is sequential.
3805 $SYMBOL_PAGE =~ m,[^/]+$,; # matches everything after th
[all...]

Completed in 127 milliseconds