| /third_party/openssl/.github/workflows/ |
| D | fips-checksums.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 5 # in the file LICENSE in the source distribution or at 6 # https://www.openssl.org/source/license.html 15 compute-checksums: 16 runs-on: ubuntu-latest 18 - name: install unifdef 20 sudo apt-get update 21 … sudo apt-get -yq --no-install-suggests --no-install-recommends --force-yes install unifdef 22 - name: create build dirs 24 mkdir ./build-pristine [all …]
|
| /third_party/icu/vendor/double-conversion/ |
| D | UPDATING.md | 1 <!-- 4 --> 8 This library is used by ICU4C to perform double-to-string and string-to-double conversions. 10 ## Updating double-conversion from Upstream to ICU 14 Go to https://github.com/google/double-conversion/releases/latest/ to determine the latest version … 16 Run `pull-from-upstream.sh` as below: 18 ./pull-from-upstream.sh <tag/branch> 26 At this point, the ICU source tree is still pristine. 30 … script computes the ICU patches on double-conversion (diff between the ICU4C source tree and the … 36 At this point, the ICU4C source tree is changed, and the vendor directory is still pristine. [all …]
|
| D | pull-from-upstream.sh | 5 if [[ -z $1 ]]; then 6 echo "Pass the current version tag of double-conversion as the first argument to this script"; 11 url="https://github.com/google/double-conversion/archive/$1.tar.gz"; 13 icu4c_i18n_root="$(dirname "$0")/../../icu4c/source/i18n"; 14 tmpdir=`mktemp -d`; 20 read -p "Press Enter to continue or s to skip: " ch; 23 wget -O "$filename" "$url"; 25 tar zxf $filename --strip 1 -C "$upstream_root_tmp"; 29 read -p "Press Enter to continue or s to skip: " ch; 32 old_vendor_path="$upstream_root/double-conversion/$1"; [all …]
|
| /third_party/icu/icu4c/source/test/intltest/ |
| D | itercoll.cpp | 5 * Copyright (c) 1997-2016, International Business Machines Corporation and 52 UnicodeString source; in TestUnicodeChar() local 56 source.remove(); in TestUnicodeChar() 61 source += codepoint; in TestUnicodeChar() 66 source += codepoint; in TestUnicodeChar() 71 iter = en_us->createCollationElementIterator(source); in TestUnicodeChar() 81 * @bug 4108758 - Make sure it works with contracting characters 87 CollationElementIterator *iter = en_us->createCollationElementIterator(test1); in TestPrevious() 94 UnicodeString source; in TestPrevious() local 106 source = "abchdcba"; in TestPrevious() [all …]
|
| /third_party/icu/icu4c/source/test/cintltst/ |
| D | citertst.c | 5 * Copyright (c) 1997-2016, International Business Machines Corporation and 79 UCollationElements *pitr = ucol_openElements(coll, pattern, -1, in TestBug672() 81 UCollationElements *titer = ucol_openElements(coll, text, -1, in TestBug672() 157 pitr = ucol_openElements(coll, pattern, -1, &status); in TestBug672Normalize() 158 titer = ucol_openElements(coll, text, -1, &status); in TestBug672Normalize() 221 UChar source[0x100]; in TestUnicodeChar() local 237 test = source; in TestUnicodeChar() 253 iter=ucol_openElements(en_us, source, u_strlen(source), &status); in TestUnicodeChar() 266 iter=ucol_openElements(en_us, source, -1, &status); in TestUnicodeChar() 287 UChar source[0x100]; in TestNormalizedUnicodeChar() local [all …]
|
| /third_party/jerryscript/targets/zephyr/ |
| D | Makefile.zephyr | 7 # http://www.apache.org/licenses/LICENSE-2.0 28 COMPONENTS ?= jerry-core jerry-ext 35 # -cp 36 # -cp_minimal 37 # -cp_minimal-mem_stats 38 # -mem_stats 39 # -mem_stress_test 42 $(error Missing Zephyr base, did you source zephyr-env.sh? ) 50 EXT_CFLAGS := -fno-asynchronous-unwind-tables -fno-omit-frame-pointer 51 EXT_CFLAGS += -fno-stack-protector -fno-strict-overflow -ffreestanding [all …]
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
| D | CollationIteratorTest.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 6 * Copyright (C) 2002-2014, International Business Machines Corporation and 13 * Source File: $ICU4CRoot/source/test/intltest/itercoll.cpp 56 String source = "abcd"; in TestClearBuffers() local 57 CollationElementIterator i = c.getCollationElementIterator(source); in TestClearBuffers() 252 CollationElementIterator pristine = en_us.getCollationElementIterator(test1); in TestOffset() local 259 assertEqual(iter, pristine); in TestOffset() 328 * @bug 4108758 - Make sure it works with contracting characters 340 String source; in TestPrevious() local 349 source = "abchdcba"; in TestPrevious() [all …]
|
| /third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
| D | CollationIteratorTest.java | 5 * Copyright (C) 2002-2014, International Business Machines Corporation and 12 * Source File: $ICU4CRoot/source/test/intltest/itercoll.cpp 53 String source = "abcd"; in TestClearBuffers() local 54 CollationElementIterator i = c.getCollationElementIterator(source); in TestClearBuffers() 249 CollationElementIterator pristine = en_us.getCollationElementIterator(test1); in TestOffset() local 256 assertEqual(iter, pristine); in TestOffset() 325 * @bug 4108758 - Make sure it works with contracting characters 337 String source; in TestPrevious() local 346 source = "abchdcba"; in TestPrevious() 347 iter = c1.getCollationElementIterator(source); in TestPrevious() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
| D | CriticalAntiDepBreaker.cpp | 1 //===- CriticalAntiDepBreaker.cpp - Anti-dep breaker ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // implements register anti-dependence breaking along a blocks 11 // critical path during post-RA scheduler. 13 //===----------------------------------------------------------------------===// 42 #define DEBUG_TYPE "post-RA-sched" 49 Classes(TRI->getNumRegs(), nullptr), KillIndices(TRI->getNumRegs(), 0), in CriticalAntiDepBreaker() 50 DefIndices(TRI->getNumRegs(), 0), KeepRegs(TRI->getNumRegs(), false) {} in CriticalAntiDepBreaker() 55 const unsigned BBSize = BB->size(); in StartBlock() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
| D | MachineFrameInfo.h | 1 //===-- CodeGen/MachineFrameInfo.h - Abstract Stack Frame Rep. --*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 44 /// physical registers treats callee-saved registers are live outside of 45 /// the function, LR would be treated as live-on-exit, even though in these 48 /// The long-term solution is to model the liveness of callee-saved registers 93 /// important optimization on register-poor architectures. Because original 94 /// variable sized alloca's in the source program are the only source of 113 SSPLK_LargeArray, ///< Array or nested array >= SSP-buffer-size. Closest [all …]
|
| /third_party/skia/modules/svg/src/ |
| D | SkSVGRenderContext.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 42 // Multipliers for DPI-relative units. 78 this->resolve(x, SkSVGLengthContext::LengthType::kHorizontal), in resolveRect() 79 this->resolve(y, SkSVGLengthContext::LengthType::kVertical), in resolveRect() 80 this->resolve(w, SkSVGLengthContext::LengthType::kHorizontal), in resolveRect() 81 this->resolve(h, SkSVGLengthContext::LengthType::kVertical)); in resolveRect() 114 if (props.fStrokeDashArray->type() != SkSVGDashArray::Type::kDashArray) { in dash_effect() 159 , fCanvasSaveCount(canvas->getSaveCount()) in SkSVGRenderContext() 190 fCanvas->restoreToCount(fCanvasSaveCount); in ~SkSVGRenderContext() 195 SkDebugf("non-local iri references not currently supported"); in findNodeById() [all …]
|
| /third_party/skia/third_party/externals/libjpeg-turbo/ |
| D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 19 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 21 libjpeg-turbo, then NASM 2.14 or later or YASM must be used when 22 building libjpeg-turbo. 30 build and install NASM from a source RPM by downloading one of the SRPMs from 36 ARCH=`uname -m` [all …]
|
| /third_party/libjpeg-turbo/ |
| D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [Yasm](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 19 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 21 libjpeg-turbo, then NASM 2.14 or later or Yasm must be used when 22 building libjpeg-turbo. 34 - GCC v4.1 (or later) or Clang recommended for best performance 36 - If building the TurboJPEG Java wrapper, JDK or OpenJDK 1.5 or later is [all …]
|
| /third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
| D | BUILDING.md | 1 Building libjpeg-turbo 6 ------------------ 11 - [CMake](http://www.cmake.org) v2.8.12 or later 13 - [NASM](http://www.nasm.us) or [YASM](http://yasm.tortall.net) 14 (if building x86 or x86-64 SIMD extensions) 16 * If using NASM, 2.10 or later (except 2.11.08) is required for an x86-64 Mac 17 build (2.11.08 does not work properly with libjpeg-turbo's x86-64 SIMD code 21 - NOTE: Currently, if it is desirable to hide the SIMD function symbols in 23 libjpeg-turbo, then YASM must be used when building libjpeg-turbo. 28 build and install NASM from a source RPM by downloading one of the SRPMs from [all …]
|
| /third_party/mksh/ |
| D | mksh.faq | 10 <p>I usually pronounce it as “<span xml:lang="de-DE-1901">em-ka-es-ha</span>”, 15 xml:lang="de-DE-1901">Mir-Be-Es-De</span>” germanically, for anglophones 16 “Mir-beas’tie” is fine.</p> 17 ---- 21 <p>mksh is a so-called (Unix) “shell” or “command interpreter”, similar to 25 also used to write so-called (shell) “script”s, short programs made by 29 behalf (but never of its own). Any privilege pop-ups you might <a 30 href="https://forum.xda-developers.com/showthread.php?t=1963976">be 32 href="https://forum.xda-developers.com/showpost.php?p=33550523&postcount=1553">not 35 ---- [all …]
|
| /third_party/python/Doc/install/ |
| D | index.rst | 3 .. _install-index: 18 :ref:`What's New <distutils-deprecated>` entry for more information. 22 :ref:`installing-index` 33 recommendations section <https://packaging.python.org/guides/tool-recommendations/>`__ 37 .. _inst-intro: 54 See :ref:`installing-index` and :ref:`distributing-index` for more details. 59 .. _inst-new-standard: 61 Distutils based source distributions 62 ------------------------------------ 64 If you download a module source distribution, you can tell pretty quickly if it [all …]
|
| /third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
| D | xcodeproj_file.py | 2 # Use of this source code is governed by a BSD-style license that can be 19 Xcode project files are "bundled": the project "file" from an end-user's 25 per-user settings, such as the state of various UI elements in the Xcode 30 Unicode data, and is encoded in UTF-8. The root element in the property list 34 children of this property. The objects dictionary is keyed by unique 96-bit 40 project file. Objects can refer to other objects by ID, using the 24-character 53 24-character object key referring to the root PBXProject object in the 67 Xcode application. Files used as input to these phases (for example, source 75 file-specific compiler flags are added to the PBXBuildFile object so as to 88 Xcode has its own way of assigning 24-character identifiers to each object, [all …]
|
| /third_party/node/tools/gyp/pylib/gyp/ |
| D | xcodeproj_file.py | 2 # Use of this source code is governed by a BSD-style license that can be 19 Xcode project files are "bundled": the project "file" from an end-user's 25 per-user settings, such as the state of various UI elements in the Xcode 30 Unicode data, and is encoded in UTF-8. The root element in the property list 34 children of this property. The objects dictionary is keyed by unique 96-bit 40 project file. Objects can refer to other objects by ID, using the 24-character 53 24-character object key referring to the root PBXProject object in the 67 Xcode application. Files used as input to these phases (for example, source 75 file-specific compiler flags are added to the PBXBuildFile object so as to 88 Xcode has its own way of assigning 24-character identifiers to each object, [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
| D | HexagonFrameLowering.cpp | 1 //===- HexagonFrameLowering.cpp - Define frame lowering -------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 //===----------------------------------------------------------------------===// 66 #define DEBUG_TYPE "hexagon-pei" 75 // +-- runtime (top of stack) runtime (bottom) --+ | 77 // --++---------------------+------------------+-----------------++-+------- 78 // | parameter area for | variable-size | fixed-size |LR| arg 80 // --+----------------------+------------------+-----------------+--+------- 81 // <- size known -> <- size unknown -> <- size known -> 85 // <--- stack growth [all …]
|
| /third_party/gstreamer/gstplugins_good/gst/matroska/ |
| D | matroska-mux.c | 7 * matroska-mux.c: matroska file/stream muxer 22 * Boston, MA 02110-1301, USA. 25 /* TODO: - check everywhere that we don't write invalid values 26 * - make sure timestamps are correctly scaled everywhere 30 * SECTION:element-matroskamux 37 …* gst-launch-1.0 -v filesrc location=/path/to/mp3 ! mpegaudioparse ! matroskamux name=mux ! filesi… 40 …* gst-launch-1.0 -v audiotestsrc num-buffers=100 ! audioconvert ! vorbisenc ! matroskamux ! filesi… 54 #include <gst/riff/riff-media.h> 56 #include <gst/pbutils/codec-utils.h> 59 #include "matroska-mux.h" [all …]
|
| /third_party/sqlite/src/ |
| D | sqlite3.c | 2 ** This file is an amalgamation of many separate C source files from SQLite 17 ** language. The code for the "sqlite3" command-line shell is also in a 21 ** 2019.09.02-Complete codec logic for encryption and decryption. 33 ** The author disclaims copyright to this source code. In place of 52 ** NO_TEST - The branches on this line are not 57 ** OPTIMIZATION-IF-TRUE - This branch is allowed to alway be false 61 ** OPTIMIZATION-IF-FALSE - This branch is allowed to alway be true 65 ** PREVENTS-HARMLESS-OVERREAD - This branch prevents a buffer overread 70 ** slash-asterisk...asterisk-slash comment marks, with no spaces between the 93 ** The author disclaims copyright to this source code. In place of [all …]
|
| /third_party/parse5/test/data/location-info/wiki-42/ |
| D | data.html | 2 <html lang="en" dir="ltr" class="client-nojs"><head> 3 <meta charset="UTF-8"><title>42 (number) - Wikipedia, the free encyclopedia</title> 5 <link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=42_… 7 <link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png"> 11 <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/"> 14 …p?debug=false&lang=en&modules=ext.flaggedRevs.basic%7Cext.gadget.DRN-wizard%2CReferenceToo… 17 <style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none} 18 /* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style> 22 …-reader":true,"aft-member":false,"aft-editor":false,"aft-monitor":false,"aft-administrator":false,… 24 …shold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"vector-simplesearch":1,"watc… [all …]
|
| /third_party/icu/icu4j/perf-tests/data/collation/ |
| D | ulyss10.txt | 30 organization with EIN [Employee Identification Number] 64-6221541 78 These Web sites include award-winning information about Project 108 If they reach just 1-2% of the world's population then the total 116 At our revised rates of production, we will reach only one-third 157 how to make them tax-deductible, or even if they CAN be made 166 Oxford, MS 38655-4109 174 [Employee Identification Number] 64-622154. Donations are 175 tax-deductible to the maximum extent permitted by law. As fundraising 213 By using or reading any part of this PROJECT GUTENBERG-tm 221 ABOUT PROJECT GUTENBERG-TM ETEXTS [all …]
|