Searched +full:days +full:- +full:before +full:- +full:close (Results 1 – 4 of 4) sorted by relevance
| /optee_os/.github/workflows/ |
| H A D | stales.yml | 1 name: 'Close stale issues and pull requests with no recent activity' 4 - cron: "15 00 * * *" 8 pull-requests: write 12 runs-on: ubuntu-latest 14 - uses: actions/stale@v10.0.0 16 repo-token: ${{ secrets.GITHUB_TOKEN }} 17 …-issue-message: 'This issue has been marked as a stale issue because it has been open (more than) … 18 …-pr-message: 'This pull request has been marked as a stale pull request because it has been open (… 19 stale-issue-label: Stale 20 stale-pr-label: Stale [all …]
|
| /optee_os/core/lib/qcbor/inc/qcbor/ |
| H A D | qcbor_encode.h | 1 // SPDX-License-Identifier: BSD-3-Clause 3 * Copyright (c) 2016-2018, The Linux Foundation. 4 * Copyright (c) 2018-2024, Laurence Lundblade. 24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 60 * This implements CBOR -- Concise Binary Object Representation as 62 * information is at http://cbor.io. This is a near-complete implementation of 68 * and @ref SpiffyDecode for general discussion on the easier-to-use 85 * Decoding of indefinite-length strings is a special case that requires 88 * indefinite-length string is encountered (indefinite-length maps and 90 * allocator called MemPool is built-in and will work if supplied with a [all …]
|
| H A D | qcbor_decode.h | 1 // SPDX-License-Identifier: BSD-3-Clause 3 * Copyright (c) 2016-2018, The Linux Foundation. 4 * Copyright (c) 2018-2024, Laurence Lundblade. 24 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 60 * general description of this encoder-decoder in section @ref 64 * non-aggregate types like integers and strings and the intermediate 66 * pre-order traversal of this tree with CBOR sequences a minor 74 * - The data itself, integer, string, floating-point number... 75 * - The label if present 76 * - Unprocessed tags [all …]
|
| /optee_os/core/lib/qcbor/src/ |
| H A D | qcbor_decode.c | 1 // SPDX-License-Identifier: BSD-3-Clause 3 Copyright (c) 2016-2018, The Linux Foundation. 4 Copyright (c) 2018-2024, Laurence Lundblade. 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT 52 * This is how the -Wmaybe-uninitialized compiler warning is 54 * with -Wall which is a common and useful gcc warning option. It also 58 * The big problem with -Wmaybe-uninitialized is that it generates 63 * put it in gcc and worse to enable it with -Wall). 65 * One solution would be to change the code so -Wmaybe-uninitialized 70 * done; -Wmaybe-uninitialized just can’t tell). This path is not [all …]
|