Searched refs:lc (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-2.7.6/lib/os/ |
D | heap.c | 88 static void split_chunks(struct z_heap *h, chunkid_t lc, chunkid_t rc) in split_chunks() argument 90 CHECK(rc > lc); in split_chunks() 91 CHECK(rc - lc < chunk_size(h, lc)); in split_chunks() 93 chunksz_t sz0 = chunk_size(h, lc); in split_chunks() 94 chunksz_t lsz = rc - lc; in split_chunks() 97 set_chunk_size(h, lc, lsz); in split_chunks() 104 static void merge_chunks(struct z_heap *h, chunkid_t lc, chunkid_t rc) in merge_chunks() argument 106 chunksz_t newsz = chunk_size(h, lc) + chunk_size(h, rc); in merge_chunks() 108 set_chunk_size(h, lc, newsz); in merge_chunks()
|
/Zephyr-Core-2.7.6/samples/boards/intel_s1000_crb/i2s/ |
D | CMakeLists.txt | 14 target_link_libraries(app PUBLIC -lc)
|
/Zephyr-Core-2.7.6/lib/libc/newlib/ |
D | CMakeLists.txt | 46 # linker invocation. -Wl,--start-group is problematic as the placement of -lc 48 # -lc / -libbgcc as interface linker flags.
|
/Zephyr-Core-2.7.6/scripts/ |
D | checkpatch.pl | 1730 my ($linenr, $lc) = @_; 1733 for (my $count = $linenr + 1; $count <= $lc; $count++) { 6172 my $lc = $stat =~ tr@\n@@; 6173 $lc = $lc + $linenr; 6174 for (my $count = $linenr; $count <= $lc; $count++) { 6194 $stat_real = get_stat_real($linenr, $lc); 6201 my $stat_real = get_stat_real($linenr, $lc); 6322 my $lc = $stat =~ tr@\n@@; 6323 $lc = $lc + $linenr; 6324 my $stat_real = get_stat_real($linenr, $lc); [all …]
|