Home
last modified time | relevance | path

Searched full:lc (Results 1 – 23 of 23) sorted by relevance

/Zephyr-latest/cmake/linker/lld/
Dlinker_libraries.cmake5 set_linker_property(NO_CREATE TARGET linker PROPERTY c_library "-lc")
8 set_linker_property(TARGET linker PROPERTY c++_library "-lc++;-lc++abi")
/Zephyr-latest/cmake/linker/ld/
Dlinker_libraries.cmake5 set_linker_property(NO_CREATE PROPERTY c_library "-lc")
26 # We are using c;rt;c (expands to '-lc -lgcc -lc') in code below.
/Zephyr-latest/cmake/linker/
Dlinker_libraries_template.cmake8 # For example, GCC usually has the order: -lc -lgcc
14 # set_linker_property(PROPERTY c_library "-lc")
/Zephyr-latest/dts/bindings/usb/
Dusb-audio-hs.yaml72 mic-channel-lc:
74 description: Enable (lc) channel.
152 hp-channel-lc:
154 description: Enable (lc) channel.
Dusb-audio-hp.yaml46 channel-lc:
48 description: Enable (lc) channel.
Dusb-audio-mic.yaml58 channel-lc:
60 description: Enable (lc) channel.
/Zephyr-latest/cmake/linker/xt-ld/
Dlinker_libraries.cmake5 set_linker_property(NO_CREATE PROPERTY c_library "-lc")
/Zephyr-latest/lib/heap/
Dheap.c106 /* Splits a chunk "lc" into a left chunk and a right chunk at "rc".
109 static void split_chunks(struct z_heap *h, chunkid_t lc, chunkid_t rc) in split_chunks() argument
111 CHECK(rc > lc); in split_chunks()
112 CHECK(rc - lc < chunk_size(h, lc)); in split_chunks()
114 chunksz_t sz0 = chunk_size(h, lc); in split_chunks()
115 chunksz_t lsz = rc - lc; in split_chunks()
118 set_chunk_size(h, lc, lsz); in split_chunks()
125 static void merge_chunks(struct z_heap *h, chunkid_t lc, chunkid_t rc) in merge_chunks() argument
127 chunksz_t newsz = chunk_size(h, lc) + chunk_size(h, rc); in merge_chunks()
129 set_chunk_size(h, lc, newsz); in merge_chunks()
/Zephyr-latest/modules/trusted-firmware-m/psa/
DGNUARM.cmake21 …_FLAGS "-Xlinker --fatal-warnings -Xlinker --gc-sections -z max-page-size=0x400 -lgcc -lc -lnosys")
/Zephyr-latest/cmake/compiler/clang/
Dtarget.cmake87 set_linker_property(PROPERTY c_library "--config=${newlib_cfg};-lc")
97 set_linker_property(PROPERTY c_library "--config=${picolibc_cfg};-lc")
/Zephyr-latest/drivers/ethernet/
Deth_sam0_gmac.h66 #define GMAC_LC LC.reg
Deth_cyclonev_priv.h354 * DE || OE || IPC || LC || RWT || RE || CE
/Zephyr-latest/dts/bindings/sensor/
Dnxp,s32-qdec.yaml88 The filters specify the delay in terms of CORE_CLK between the input and output line of LC.
Dti,fdc2x1x.yaml202 The FDC will use this settling time to allow the LC sensor to
/Zephyr-latest/soc/ite/ec/it8xxx2/
Dsoc.c37 /* LC Oscillator Control Register */
39 /* LC Oscillator Control Register 1 */
41 /* LC Oscillator Tuning Factor 2 */
/Zephyr-latest/
D.mailmap109 Shilpashree L C <shilpashree.lc@intel.com>
/Zephyr-latest/modules/openthread/
DCMakeLists.txt212 target_link_libraries(ot-config INTERFACE -lc)
/Zephyr-latest/scripts/
Dcheckpatch.pl983 foreach (sort { lc($a) cmp lc($b) } keys(%camelcase)) {
1744 my ($linenr, $lc) = @_;
1747 for (my $count = $linenr + 1; $count <= $lc; $count++) {
2684 my $ucfirst_sign_off = ucfirst(lc($sign_off));
2738 $sig_nospace = lc($sig_nospace);
2833 $orig_commit = lc($2);
2835 $orig_commit = lc($1);
2952 my $typo_fix = $spelling_fix{lc($typo)};
4254 my $level = lc($orig);
4264 my $level = lc($orig);
[all …]
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Daccess.h324 /** Light LC Server */
326 /** Light LC Setup Server */
328 /** Light LC Client */
/Zephyr-latest/drivers/sensor/nxp/qdec_nxp_s32/
Dqdec_nxp_s32.c23 /* LCU LUT control values for each of the 4 LC outputs */
/Zephyr-latest/tests/unit/cbprintf/
Dmain.c402 TEST_PRF(&rc, "%lc", (wint_t)'a'); in ZTEST()
406 PRF_CHECK("%lc", rc); in ZTEST()
/Zephyr-latest/doc/hardware/porting/board/
Dboard-terminology.svg3lC+aF8pZ76V1oaE1iyjwzpW2q9DxyAAECpFHQIIIIAAAggggAACCCCAAAIIIIAAAo0rQACgcfeGmSGAAAIIIIAAAggggAACCCC…
/Zephyr-latest/drivers/ethernet/nxp_enet/
Deth_mcux.c892 /* Error event: BABR/BABT/EBERR/LC/RL/UN/PLR. */ in eth_callback()