repo
stringlengths
1
152
file
stringlengths
14
221
code
stringlengths
501
25k
file_length
int64
501
25k
avg_line_length
float64
20
99.5
max_line_length
int64
21
134
extension_type
stringclasses
2 values
RIOT
RIOT-master/sys/suit/storage/ram.c
/* * Copyright (C) 2020 Koen Zandberg * 2020 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_suit_storage * @{ * * @file * @brief SUI...
6,139
25.12766
90
c
RIOT
RIOT-master/sys/suit/storage/vfs.c
/* * Copyright (C) 2022 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_suit_storage * @{ * * @file * @brief SUIT vfs storage module implementation ...
6,597
22.905797
90
c
RIOT
RIOT-master/sys/suit/transport/worker.c
/* * Copyright (C) 2019 Freie Universität Berlin * 2019 Inria * 2019 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
6,983
25.758621
85
c
RIOT
RIOT-master/sys/suit/transport/mock.c
/* * Copyright (C) 2020 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #include <assert.h> #include <stdio.h> #include <stdbool.h> #include "kernel...
1,175
26.348837
78
c
RIOT
RIOT-master/sys/suit/transport/coap.c
/* * Copyright (C) 2019 Freie Universität Berlin * 2019 Inria * 2019 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
2,922
28.23
84
c
RIOT
RIOT-master/sys/suit/transport/vfs.c
/* * Copyright (C) 2022 ML!PA Consulting GmbH * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_suit_transport_vfs * @{ * * @fil * @brief SUIT VFS * * @au...
1,346
20.725806
96
c
RIOT
RIOT-master/sys/posix/pthread/pthread_tls.c
/* * Copyright (C) 2014 Hamburg University of Applied Sciences (HAW) * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief RIOT POSIX threa...
4,947
23.616915
126
c
RIOT
RIOT-master/sys/posix/pthread/pthread_cond.c
/* * Copyright (C) 2014 Hamburg University of Applied Sciences (HAW) * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys * @{ * * @file * @brief Condition var...
4,910
21.424658
96
c
RIOT
RIOT-master/sys/posix/pthread/pthread_rwlock.c
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any l...
11,205
34.238994
130
c
RIOT
RIOT-master/sys/posix/pthread/pthread_barrier.c
/* * POSIX compatible implementation of barriers. * * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file ...
3,311
27.067797
80
c
RIOT
RIOT-master/sys/posix/pthread/pthread_rwlock_attr.c
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any l...
1,929
24.733333
100
c
RIOT
RIOT-master/sys/posix/pthread/pthread_mutex_attr.c
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any lat...
3,724
23.506579
81
c
RIOT
RIOT-master/sys/posix/pthread/pthread_once.c
/* * POSIX implementation of threading. * * Copyright (C) 2013 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief ...
710
20.545455
74
c
RIOT
RIOT-master/sys/posix/pthread/include/pthread_mutex_attr.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Attributes for pthread mutexes. * @note...
8,970
39.2287
119
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_cond.h
/* * Copyright (C) 2014 Hamburg University of Applied Sciences (HAW) * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief RIOT POSIX condi...
5,311
33.270968
103
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_spin.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Spin locks. * @note Do not include t...
3,059
28.423077
106
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_tls.h
/* * Copyright (C) 2014 Hamburg University of Applied Sciences (HAW) * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief RIOT POSIX threa...
2,436
24.652632
92
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_once.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Singletons features / ...
1,856
28.951613
99
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_cancellation.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Thread cancellation fe...
2,031
25.38961
114
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_cleanup.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Cleanup primitives for...
3,168
29.76699
101
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_threading.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Thread creation featur...
4,168
35.252174
112
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_rwlock_attr.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Implementation of a fair, POSIX conformi...
2,778
30.579545
91
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_rwlock.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Implementation of a fa...
6,591
34.826087
129
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_scheduling.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Scheduling parameters ...
1,969
30.269841
105
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_barrier.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Synchronization barriers. * @note Do...
4,633
31.180556
104
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_mutex.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Mutual exclusion. * @note Do not inc...
3,903
31.533333
106
h
RIOT
RIOT-master/sys/posix/pthread/include/pthread_threading_attr.h
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup pthread * @{ * @file * @brief Thread creation featur...
8,135
37.018692
112
h
RIOT
RIOT-master/sys/posix/semaphore/posix_semaphore.c
/* * Copyright (C) 2017 TriaGnoSys GmbH * 2013 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * * @author Christian Mehlis...
1,226
20.910714
69
c
RIOT
RIOT-master/sys/posix/select/posix_select.c
/* * Copyright (C) 2019 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * @file * @author Martine S. Lenders <m.lenders@fu-berlin.de> */ #include <e...
3,967
26.365517
81
c
RIOT
RIOT-master/sys/posix/inet/inet.c
/* * Copyright (C) 2013-15 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #include <arpa/inet.h> #include <errno.h> #include "net/ipv4/addr.h" #include "net/ipv6...
1,615
22.085714
75
c
RIOT
RIOT-master/sys/posix/include/fcntl.h
/* * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @file * @ingroup posix * @brief POSIX compatible fcntl.h definitions * @author Joakim Nohlgår...
2,451
30.435897
101
h
RIOT
RIOT-master/sys/posix/include/semaphore.h
/* * Copyright (C) 2017 TriaGnoSys GmbH * 2013 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup posix_semaphore POSIX semaphores ...
8,988
29.063545
98
h
RIOT
RIOT-master/sys/posix/include/sys/statvfs.h
/* * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @file * @brief POSIX compatible sys/statvfs.h definitions * @author Joakim Nohlgård <joakim.no...
2,466
30.628205
78
h
RIOT
RIOT-master/sys/posix/include/sys/select.h
/* * Copyright (C) 2019 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup posix_select POSIX select * @ingroup posix * @brief Select implemen...
5,615
31.462428
111
h
RIOT
RIOT-master/sys/posix/include/sys/socket.h
/* * Copyright (C) 2013-15 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @addtogroup posix_sockets * @{ */ /** * @file * @brief Main socket header...
23,789
45.374269
98
h
RIOT
RIOT-master/sys/posix/include/netinet/in.h
/* * Copyright (C) 2013-15 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @addtogroup posix_sockets * @{ */ /** * @file * @brief Main socket header...
8,012
28.138182
102
h
RIOT
RIOT-master/sys/posix/include/arpa/inet.h
/* * Copyright (C) 2013-15 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @addtogroup posix_sockets * @{ */ /** * @file * @brief Definitions for in...
2,169
23.382022
96
h
RIOT
RIOT-master/sys/malloc_thread_safe/malloc_wrappers.c
/* * Copyright (C) 2019 Gunar Schorcht * 2022 Otto-von-Guericke-Universität Magdeburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * @brief Imple...
3,065
25.205128
87
c
RIOT
RIOT-master/sys/ecc/hamming256.c
/* ---------------------------------------------------------------------------- * ATMEL Microcontroller Software Support * ---------------------------------------------------------------------------- * Copyright (c) 2008, Atmel Corporation * * All rights reserved. * * Redistribution and use in source and...
10,485
31.974843
109
c
RIOT
RIOT-master/sys/ecc/repetition.c
/* * Copyright (c) 2007 - 2015 Joseph Gaeddert * Copyright (c) 2018 HAW Hamburg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitatio...
2,794
31.882353
80
c
RIOT
RIOT-master/sys/ecc/golay2412.c
/* * Copyright (c) 2007 - 2015 Joseph Gaeddert * Copyright (c) 2018 HAW Hamburg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitatio...
14,139
33.403893
82
c
RIOT
RIOT-master/sys/rtc_utils/rtc_utils.c
/* * Copyright (C) 2019 ML!PA Consulting GmbH * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for more * details. */ /** * @ingroup sys_rtc_utils * @{ * * @file * @brief common RTC helper function...
6,764
24.91954
92
c
RIOT
RIOT-master/sys/coding/xor.c
/* * Copyright (C) 2021 Benjamin Valentin <benjamin.valentin@ml-pa.com> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_coding_xor * @brief XOR coding algori...
5,612
26.514706
85
c
RIOT
RIOT-master/sys/log_printfnoformat/include/log_module.h
/* * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup sys_log_printfnoformat log_printfnoformat: puts log modul...
1,260
23.25
83
h
RIOT
RIOT-master/sys/div/div.c
/** * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. * * @ingroup sys_div * @{ * @file * @brief Integer division function implementations * * @author...
1,450
29.87234
81
c
RIOT
RIOT-master/sys/stdio_rtt/stdio_rtt.c
/* * Copyright (C) 2016 Michael Andersen <m.andersen@cs.berkeley.edu> * * This file was based on SEGGER's reference implementation * which can be found here: https://www.segger.com/jlink-rtt.html * (c) 2014-2016 SEGGER Microcontroller GmbH & Co. KG * This implementation bore the following license notes: ********...
12,996
38.384848
88
c
RIOT
RIOT-master/sys/isrpipe/isrpipe.c
/* * Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys * @{ * @file * @brief ISR -> userspace pipe impl...
1,239
20.37931
78
c
RIOT
RIOT-master/sys/isrpipe/read_timeout/read_timeout.c
/* * Copyright (C) 2016 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup isr_pipe_read_timeout * @{ * @file * @brief ISR ...
1,674
21.039474
97
c
RIOT
RIOT-master/sys/sema/sema.c
/* * Copyright (C) 2016 TriaGnoSys GmbH * 2013-15 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * * @author Víctor Ariño ...
3,709
20.2
86
c
RIOT
RIOT-master/sys/evtimer/evtimer.c
/* * Copyright (C) 2016-17 Kaspar Schleiser <kaspar@schleiser.de> * 2017 Freie Universität Berlin * 2018 Josua Arndt * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details...
5,275
24.61165
84
c
RIOT
RIOT-master/sys/log_color/log_color.c
/* * Copyright (C) 2019 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @addtogroup sys_log_color Colored log module * @{ * * @file * @brief log_color * * @author...
2,515
22.082569
69
c
RIOT
RIOT-master/sys/checksum/crc32.c
/* * Copyright (C) 2020 Ayman El Didi * * To the extent possible under law, the author(s) have dedicated all * domain worldwide. This software is distributed without any warranty. * * You should have received a copy of the CC0 Public Domain Dedication along * with this software. If not, see http://creativecommon...
5,338
43.123967
84
c
RIOT
RIOT-master/sys/checksum/fletcher16.c
/* * Copyright 2015 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_checksum_fletcher16 * @{ * * @file * @brief Fletcher16 implementation * * ...
1,324
20.721311
78
c
RIOT
RIOT-master/sys/checksum/crc16_ccitt.c
/* * Copyright 2016 Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_checksum_crc16_ccitt * @{ * * @file * @brief ...
6,477
41.900662
86
c
RIOT
RIOT-master/sys/checksum/ucrc16.c
/* * Copyright (C) 2016 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * @author Martine Lenders <m.lenders@fu-berlin.de> */ #include <a...
1,432
25.537037
80
c
RIOT
RIOT-master/sys/checksum/fletcher32.c
/* * Copyright 2015 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_checksum_fletcher32 * @{ * * @file * @brief Fletcher32 implementation * * ...
1,016
23.214286
69
c
RIOT
RIOT-master/sys/bloom/bloom.c
/** * Bloom filter implementation * * Copyright (C) 2013 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. * * @file * @author Jason Linehan <patientulysses@gmail.co...
1,461
21.492308
99
c
RIOT
RIOT-master/sys/ut_process/ut_process.c
/* * Copyright (C) 2021 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * @author Martine Lenders <m.lenders@fu-berlin.de> */ #include <a...
13,858
30.004474
83
c
RIOT
RIOT-master/sys/oneway-malloc/include/malloc.h
/* * Copyright (C) 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup oneway_malloc Oneway malloc * @ingroup sys_memory_management * *...
2,726
30.344828
111
h
RIOT
RIOT-master/sys/timex/timex_to_str.c
/* * Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file */ #include <stdint.h> #include "timex.h" #def...
1,549
22.484848
97
c
RIOT
RIOT-master/sys/timex/timex.c
/** * Timex implementation * * Copyright (C) 2009, 2010, 2013, 2014 Freie Universitaet Berlin (FUB). * Copyright (C) 2013, 2014 INRIA. * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
2,532
22.027273
75
c
RIOT
RIOT-master/sys/timex/tm.c
/* * Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any l...
2,662
26.453608
90
c
RIOT
RIOT-master/sys/progress_bar/progress_bar.c
/* * Copyright (C) 2019 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_progress_bar * @{ * * @file * @brief Progress bar implementation * * @auth...
2,402
21.669811
78
c
RIOT
RIOT-master/sys/puf_sram/puf_sram.c
/* * Copyright (C) 2018 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_puf_sram * * @{ * @file * * @author Peter Kietzmann <peter.kietzmann@h...
1,819
25
79
c
RIOT
RIOT-master/sys/cxx_ctor_guards/cxa_guard.c
/* * Copyright (C) 2020 Otto-von-Guericke-Universität Magdeburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_cxx_ctor_guards * @{ * * @file * @brief Im...
2,308
26.819277
78
c
RIOT
RIOT-master/sys/clif/clif.c
/* * Copyright (c) 2019 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_clif * @{ * * @file * @brief CoRE Link format encoding and decoding li...
9,939
24.818182
100
c
RIOT
RIOT-master/sys/clif/include/clif_internal.h
/* * Copyright (C) 2019 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_clif * * @{ * * @file * @brief Internal definitions for CoRE Link format...
3,377
20.653846
79
h
RIOT
RIOT-master/sys/fido2/ctap/ctap_crypto.c
/* * Copyright (C) 2021 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup fido2_ctap_crypto * @{ * @file * * @author Nils Ollrogge <nils.oll...
8,267
23.034884
93
c
RIOT
RIOT-master/sys/fido2/ctap/ctap_mem.c
/* * Copyright (C) 2021 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup fido2_ctap_mem * @{ * @file * * @author Nils Ollrogge <nils.ollrog...
6,068
22.988142
100
c
RIOT
RIOT-master/sys/fido2/ctap/transport/ctap_transport.c
/* * Copyright (C) 2021 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup fido2_ctap_transport * @{ * @file * * @author Nils Ollrogge <nils....
2,293
21.057692
82
c
RIOT
RIOT-master/sys/fido2/ctap/transport/hid/ctap_hid.c
/* * Copyright (C) 2021 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup fido2_ctap_transport_hid * @{ * @file * * @author Nils Ollrogge <n...
20,222
26.855372
99
c
RIOT
RIOT-master/sys/mineplex/mineplex.c
/* * Copyright (C) 2016 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_mineplex * @{ * * @file * @brief This file contains the a...
5,748
40.963504
73
c
RIOT
RIOT-master/sys/xtimer/xtimer.c
/* * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de> * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_xtimer * * @{ * @file ...
6,776
22.946996
93
c
RIOT
RIOT-master/sys/xtimer/xtimer_core.c
/** * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de> * 2016 Eistec AB * 2018 Josua Arndt * 2018 UC Berkeley * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory...
9,728
27.037464
98
c
RIOT
RIOT-master/sys/eepreg/eepreg.c
/* * Copyright (C) 2018 Acutam Automation, LLC * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_eepreg * @{ * * @file * @brief eepreg implementation * * @autho...
12,095
23.240481
78
c
RIOT
RIOT-master/sys/fs/constfs/constfs.c
/* * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_fs_constfs * @{ * * @file * @brief ConstFS implementation * * @author ...
7,909
30.019608
105
c
RIOT
RIOT-master/sys/fs/devfs/devfs.c
/* * Copyright (C) 2016 Eistec AB * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_fs_devfs * @{ * * @file * @brief DevFS implementation * * @author ...
7,129
28.46281
102
c
RIOT
RIOT-master/sys/test_utils/result_output/result_output.c
/* * Copyright (C) 2021 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys * @{ * * @file * @brief Result output common implementation * * * @...
2,418
20.219298
75
c
RIOT
RIOT-master/sys/test_utils/result_output/check/result_output_types.h
/* * Copyright (C) 2021 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #ifndef RESULT_OUTPUT_TYPES_H #define RESULT_OUTPUT_TYPES_H #ifdef __cplusplus extern "C" { #endif #if...
1,092
22.76087
84
h
RIOT
RIOT-master/sys/test_utils/result_output/check/result_output_check.c
/* * Copyright (C) 2021 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #include <stdint.h> #include <stdbool.h> #include <assert.h> #include "test_utils/result_output.h" voi...
2,801
21.062992
69
c
RIOT
RIOT-master/sys/test_utils/dummy_thread/dummy_thread.c
/* * Copyright (C) 2020 Kaspar Schleiser <kaspar@schleiser.de> * Freie Universität Berlin * Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
1,375
22.724138
76
c
RIOT
RIOT-master/sys/test_utils/interactive_sync/interactive_sync.c
/* * Copyright (C) 2019 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys * @{ * * @file * @brief Interactive Sync implementation ...
1,317
25.36
77
c
RIOT
RIOT-master/sys/test_utils/netdev_ieee802154_minimal/netdev_ieee802154_minimal.c
/* * Copyright (C) 2022 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for * more details. */ /** * @ingroup test_utils_netdev_ieee802154_minimal * @{ * * @file * @brief Implementatio...
6,767
26.737705
95
c
RIOT
RIOT-master/sys/test_utils/netdev_ieee802154_minimal/shell_commands.c
/* * Copyright (C) 2022 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for * more details. */ /** * @ingroup test_utils_netdev_ieee802154_minimal * @{ * * @file * @brief Shell command...
8,186
27.726316
103
c
RIOT
RIOT-master/sys/test_utils/print_stack_usage/print_stack_usage.c
/* * Copyright (C) 2020 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys * @{ * * @file * @brief Prints stack usage in JSON metric...
1,748
23.633803
95
c
RIOT
RIOT-master/sys/test_utils/benchmark_udp/benchmark_udp.c
/* * Copyright (C) 2021 ML!PA Consulting GmbH * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for * more details. */ /** * @ingroup test_utils_benchmark_udp * @{ * * @file * * @author Benjamin Val...
5,447
24.577465
84
c
RIOT
RIOT-master/sys/test_utils/netdev_eth_minimal/netdev_eth_minimal_internal.h
/* * Copyright (C) 2022 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup test_utils_netdev_eth_minimal * * @{ * @file * @brief Internal definitions...
1,125
21.078431
77
h
RIOT
RIOT-master/sys/test_utils/netdev_eth_minimal/netdev_eth_minimal.c
/* * Copyright (C) 2022 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for * more details. */ /** * @ingroup test_utils_netdev_eth_minimal * @{ * * @file * @brief Implementation of ne...
2,810
24.324324
90
c
RIOT
RIOT-master/sys/test_utils/netdev_eth_minimal/shell_commands.c
/* * Copyright (C) 2022 HAW Hamburg * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for * more details. */ /** * @ingroup test_utils_netdev_eth_minimal * @{ * * @file * @brief Shell commands for n...
2,857
22.619835
77
c
RIOT
RIOT-master/sys/tiny_strerror/tiny_strerror.c
/* * Copyright (C) 2021 ML!PA Consulting GmbH * 2022 Otto-von-Guericke-Universität Magdeburg * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * @brief ...
10,119
38.53125
80
c
RIOT
RIOT-master/sys/event/thread.c
/* * Copyright (C) 2019 Kaspar Schleiser <kaspar@schleiser.de> * 2018 Freie Universität Berlin * 2020 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
4,309
31.164179
79
c
RIOT
RIOT-master/sys/event/event.c
/* * Copyright (C) 2017 Inria * 2017 Kaspar Schleiser <kaspar@schleiser.de> * 2018 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /*...
3,876
22.355422
75
c
RIOT
RIOT-master/sys/event/callback.c
/* * Copyright (C) 2017 Inria * 2017 Freie Universität Berlin * 2017 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #i...
803
29.923077
94
c
RIOT
RIOT-master/sys/event/timeout_ztimer.c
/* * Copyright (C) 2017 Inria * 2017 Freie Universität Berlin * 2017 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ #i...
1,465
28.32
93
c
RIOT
RIOT-master/sys/event/periodic.c
/* * Copyright (C) 2021 Inria * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_event * @{ * * @file * @brief Periodic Event Implementation * * @author ...
1,252
25.104167
81
c
RIOT
RIOT-master/sys/newlib_syscalls_default/syscalls.c
/* * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de> * 2014 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser General * Public License v2.1. See the file LICENSE in the top level directory for more * details. */ /** * @defgroup sys_newlib...
15,326
22.507669
96
c
RIOT
RIOT-master/sys/app_metadata/app_metadata.c
/** Copyright (C) 2019, HAW Hamburg. * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. * * @ingroup sys_app_metadata * @{ * @file * @brief Prints application metadata such as BOARD, CPU, OS...
964
29.15625
71
c
RIOT
RIOT-master/sys/shell/shell.c
/* * Copyright (C) 2009, 2020 Freie Universität Berlin * Copyright (C) 2013, INRIA. * Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details....
14,725
27.264875
81
c
RIOT
RIOT-master/sys/shell/cmds/heap.c
/* * Copyright (C) 2013 Zakaria Kasmi <zkasmi@inf.fu-berlin.de> * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup sys_shell_commands * @{ * * @file * @brief Pri...
951
20.155556
72
c
RIOT
RIOT-master/sys/shell/cmds/gnrc_ipv6_blacklist.c
/* * Copyright (C) Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @{ * * @file * @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author Martin L...
1,636
22.724638
84
c