Home
last modified time | relevance | path

Searched +full:- +full:os (Results 1 – 7 of 7) sorted by relevance

/tinycbor-2.7.6/
D.travis.yml4 - os: linux
8 - ubuntu-toolchain-r-test
9 - sourceline: 'ppa:beineri/opt-qt593-trusty'
11 - qt59base valgrind
12 - g++-7
14 - QMAKESPEC=linux-g++
15 - EVAL="CC=gcc-7 && CXX=g++-7"
16 - CFLAGS="-Os"
17 - QMAKEFLAGS="-config release"
18 - os: linux
[all …]
D.appveyor.yml1 version: 0.5-build-{build}
5 - Visual Studio 2015
6 - Visual Studio 2013
7 - Visual Studio 2017
9 - cmd: >-
20 - cmd: >-
21 nmake -f Makefile.nmake -nologo CFLAGS="-W3 -Os -MDd"
25 if /i "%tests%"=="1" qmake CONFIG-=release CONFIG+=debug
27 if /i "%tests%"=="1" nmake -nologo -s
29 - cmd: >-
[all …]
DDoxyfile16 #---------------------------------------------------------------------------
18 #---------------------------------------------------------------------------
21 # that follow. The default is UTF-8 which is also the encoding used for all text
25 # The default value is: UTF-8.
27 DOXYFILE_ENCODING = UTF-8
30 # double-quotes, unless you are using Doxywizard) that should identify the
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
[all …]
/tinycbor-2.7.6/src/
Dcbor_mbuf_writer.c10 * http://www.apache.org/licenses/LICENSE-2.0
20 #include "os/mynewt.h"
31 rc = os_mbuf_append(cb->m, data, len); in cbor_mbuf_writer()
35 cb->enc.bytes_written += len; in cbor_mbuf_writer()
43 cb->m = m; in cbor_mbuf_writer_init()
44 cb->enc.bytes_written = 0; in cbor_mbuf_writer_init()
45 cb->enc.write = &cbor_mbuf_writer; in cbor_mbuf_writer_init()
Dcbor_mbuf_reader.c10 * http://www.apache.org/licenses/LICENSE-2.0
20 #include "os/mynewt.h"
30 os_mbuf_copydata(cb->m, offset + cb->init_off, sizeof(val), &val); in cbor_mbuf_reader_get8()
40 os_mbuf_copydata(cb->m, offset + cb->init_off, sizeof(val), &val); in cbor_mbuf_reader_get16()
50 os_mbuf_copydata(cb->m, offset + cb->init_off, sizeof(val), &val); in cbor_mbuf_reader_get32()
60 os_mbuf_copydata(cb->m, offset + cb->init_off, sizeof(val), &val); in cbor_mbuf_reader_get64()
69 return os_mbuf_cmpf(cb->m, offset + cb->init_off, buf, len) == 0; in cbor_mbuf_reader_cmp()
79 rc = os_mbuf_copydata(cb->m, offset + cb->init_off, len, dst); in cbor_mbuf_reader_cpy()
92 cb->r.get8 = &cbor_mbuf_reader_get8; in cbor_mbuf_reader_init()
93 cb->r.get16 = &cbor_mbuf_reader_get16; in cbor_mbuf_reader_init()
[all …]
/tinycbor-2.7.6/include/tinycbor/
Dcbor_mbuf_writer.h10 * http://www.apache.org/licenses/LICENSE-2.0
24 #include "os/mynewt.h"
Dcbor_mbuf_reader.h10 * http://www.apache.org/licenses/LICENSE-2.0
24 #include "os/mynewt.h"