| /external/clang/test/SemaCXX/ |
| D | array-bounds.cpp | 1 // RUN: %clang_cc1 -verify %s 4 int x[2]; // expected-note 4 {{array 'x' declared here}} in foo() 5 int y[2]; // expected-note 2 {{array 'y' declared here}} in foo() 6 int z[1]; // expected-note {{array 'z' declared here}} in foo() 7 int w[1][1]; // expected-note {{array 'w' declared here}} in foo() 8 int v[1][1][1]; // expected-note {{array 'v' declared here}} in foo() 9 int *p = &y[2]; // no-warning in foo() 10 (void) sizeof(x[2]); // no-warning in foo() 11 …y[2] = 2; // expected-warning {{array index 2 is past the end of the array (which contains 2 eleme… in foo() 12 …z[1] = 'x'; // expected-warning {{array index 1 is past the end of the array (which contains 1 ele… in foo() [all …]
|
| /external/cronet/net/http/ |
| D | http_no_vary_search_data_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 159 {// No No-Vary-Search Header case 161 "Set-Cookie: a\r\n" 162 "Set-Cookie: b\r\n\r\n", 165 {// No-Vary-Search Header doesn't parse as a dictionary. 167 R"(No-Vary-Search: "a")" 171 {// No-Vary-Search Header doesn't parse as a dictionary. 173 "No-Vary-Search: (a)\r\n\r\n", 178 R"(No-Vary-Search: params=("b"),except=("a"))" 185 "No-Vary-Search: unknown-key\r\n\r\n", [all …]
|
| /external/clang/test/Analysis/ |
| D | array-struct-region.c | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -analyzer-constr… 7 char b[2] = "abc"; // expected-warning{{too long}} in string_literal_init() 10 clang_analyzer_eval(a[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init() 11 clang_analyzer_eval(b[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init() 12 clang_analyzer_eval(c[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init() 14 clang_analyzer_eval(a[3] == 0); // expected-warning{{TRUE}} in string_literal_init() 15 clang_analyzer_eval(c[3] == 0); // expected-warning{{TRUE}} in string_literal_init() 17 clang_analyzer_eval(c[4] == 0); // expected-warning{{TRUE}} in string_literal_init() 23 …int vec[6][2] = {{0.195, 0.02}, {0.383, 0.067}, {0.55, 0.169}, // expected-warning 6 {{implicit c… in nested_compound_literals() 24 …{0.831, 0.45}, {0.924, 0.617}, {0.98, 0.805}}; // expected-warning 6 {{implicit conversion from 'd… in nested_compound_literals() [all …]
|
| D | range_casts.c | 2 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -analyze -analyzer-checker=core,debug.ExprInspection… 8 unsigned index = -1; in f1() local 9 if (index < foo) index = foo; in f1() 10 if (index + 1 == 0) // because of foo range, index is in range [0; UINT_MAX] in f1() 11 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f1() 13 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f1() 18 int index = -1; in f2() local 19 if (index < foo) index = foo; // index equals ULONG_MAX in f2() 20 if (index + 1 == 0) in f2() 21 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f2() [all …]
|
| /external/jemalloc_new/include/jemalloc/internal/ |
| D | size_classes.sh | 13 # The range of tiny size classes is [2^lg_tmin..2^(lg_q-1)]. 28 while [ ${e} -gt 0 ] ; do 30 e=$((${e} - 1)) 37 while [ ${x} -gt 1 ] ; do 47 if [ ${pow2_floor} -lt ${y} ] ; then 77 while [ ${perfect} -eq 0 ] ; do 83 if [ ${perfect_slab_size} -eq $((${perfect_nregs} * ${reg_size})) ] ; then 92 index=$1 99 if [ ${lg_delta} -ge ${lg_p} ] ; then 107 if [ ${sz} -eq $((${npgs} * ${p})) ] ; then [all …]
|
| /external/llvm/test/Transforms/LoopVectorize/ |
| D | induction.ll | 1 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -S | FileCheck %s 2 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -instcombine -S | … 3 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=2 -instcombine -S | … 4 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=2 -S | FileCheck %s … 5 …pt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=4 -enable-interleaved-mem-a… 7 …t = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:1… 10 ; CHECK-LABEL: @multi_int_induction( 12 ; CHECK: %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ] 13 ; CHECK: %[[VAR:.*]] = trunc i64 %index to i32 39 ; IND-LABEL: scalar_use [all …]
|
| /external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/ |
| D | Jamfile.v2 | 1 # Copyright 2009-2013 Karsten Ahnert 2 # Copyright 2011-2012 Mario Mulansky 13 path-constant here : . ; 19 if --enable-index in [ modules.peek : ARGV ] 21 ECHO "Building the odeint docs with automatic index generation enabled." ; 23 using auto-index ; 27 <auto-index>on 28 <auto-index-verbose>on 31 <format>html:<auto-index-internal>on # on (or off) to use internally generated indexes. 32 # <format>html:<xsl:param>generate.index=0 # Don't let the XSL stylesheets generate indexes. [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
| D | MachOLinkGraphBuilder.h | 1 //===----- MachOLinkGraphBuilder.h - MachO LinkGraph builder ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 42 assert((!Name || !Name->empty()) && "Name must be none or non-empty"); in NormalizedSymbol() 98 /// Index is zero-based (MachO section indexes are usually one-based) and 99 /// assumed to be in-range. Client is responsible for checking. 100 NormalizedSection &getSectionByIndex(unsigned Index) { in getSectionByIndex() argument 101 auto I = IndexToSection.find(Index); in getSectionByIndex() 102 assert(I != IndexToSection.end() && "No section recorded at index"); in getSectionByIndex() [all …]
|
| /external/angle/third_party/glslang/src/Test/baseResults/ |
| D | 100Limits.vert.out | 21 0:24 No loop body 26 0:26 No loop body 29 0:28 No loop condition 30 0:28 No loop body 37 0:29 No loop body 40 0:30 No loop condition 41 0:30 No loop body 43 0:30 Post-Increment ( temp highp float) 51 0:31 No loop condition 52 0:31 No loop body [all …]
|
| D | hlsl.intrinsics.negative.frag.out | 6 ERROR: 0:28: 'refract' : no matching overloaded function found 8 ERROR: 0:39: 'GetRenderTargetSamplePosition' : no matching overloaded function found 10 ERROR: 0:47: 'CheckAccessFullyMapped' : no matching overloaded function found 11 ERROR: 0:49: 'cross' : no matching overloaded function found 12 ERROR: 0:50: 'D3DCOLORtoUBYTE4' : no matching overloaded function found 13 ERROR: 0:51: 'determinant' : no matching overloaded function found 14 ERROR: 0:57: 'transpose' : no matching overloaded function found 15 ERROR: 0:64: 'CheckAccessFullyMapped' : no matching overloaded function found 16 ERROR: 0:66: 'D3DCOLORtoUBYTE4' : no matching overloaded function found 17 ERROR: 0:67: 'determinant' : no matching overloaded function found [all …]
|
| /external/deqp-deps/glslang/Test/baseResults/ |
| D | 100Limits.vert.out | 21 0:24 No loop body 26 0:26 No loop body 29 0:28 No loop condition 30 0:28 No loop body 37 0:29 No loop body 40 0:30 No loop condition 41 0:30 No loop body 43 0:30 Post-Increment ( temp highp float) 51 0:31 No loop condition 52 0:31 No loop body [all …]
|
| D | hlsl.intrinsics.negative.frag.out | 6 ERROR: 0:28: 'refract' : no matching overloaded function found 8 ERROR: 0:39: 'GetRenderTargetSamplePosition' : no matching overloaded function found 10 ERROR: 0:47: 'CheckAccessFullyMapped' : no matching overloaded function found 11 ERROR: 0:49: 'cross' : no matching overloaded function found 12 ERROR: 0:50: 'D3DCOLORtoUBYTE4' : no matching overloaded function found 13 ERROR: 0:51: 'determinant' : no matching overloaded function found 14 ERROR: 0:57: 'transpose' : no matching overloaded function found 15 ERROR: 0:64: 'CheckAccessFullyMapped' : no matching overloaded function found 16 ERROR: 0:66: 'D3DCOLORtoUBYTE4' : no matching overloaded function found 17 ERROR: 0:67: 'determinant' : no matching overloaded function found [all …]
|
| /external/icu/icu4c/source/common/unicode/ |
| D | edits.h | 18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text. 29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to 31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul… 32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-… 43 * next() on the iterator, skips over no-change edits (unchanged regions). 44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha… 47 * calling next() on the iterator, skips over no-change edits (unchanged regions). 50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the 53 * <li>abc ⇨ abc (no-change) 56 * <li>e ⇨ e (no-change) [all …]
|
| /external/cronet/third_party/icu/source/common/unicode/ |
| D | edits.h | 18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text. 29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to 31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul… 32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-… 43 * next() on the iterator, skips over no-change edits (unchanged regions). 44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha… 47 * calling next() on the iterator, skips over no-change edits (unchanged regions). 50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the 53 * <li>abc ⇨ abc (no-change) 56 * <li>e ⇨ e (no-change) [all …]
|
| /external/icu/libicu/cts_headers/unicode/ |
| D | edits.h | 18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text. 29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to 31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul… 32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-… 43 * next() on the iterator, skips over no-change edits (unchanged regions). 44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha… 47 * calling next() on the iterator, skips over no-change edits (unchanged regions). 50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the 53 * <li>abc ⇨ abc (no-change) 56 * <li>e ⇨ e (no-change) [all …]
|
| /external/tensorflow/tensorflow/lite/objc/sources/ |
| D | TFLInterpreter.mm | 7 // http://www.apache.org/licenses/LICENSE-2.0 62 #pragma mark - NSObject 64 - (void)dealloc { 69 #pragma mark - Public 71 - (nullable instancetype)initWithModelPath:(NSString *)modelPath error:(NSError **)error { 78 - (nullable instancetype)initWithModelPath:(NSString *)modelPath 84 - (nullable instancetype)initWithModelPath:(NSString *)modelPath 169 - (NSArray<NSString *> *)signatureKeys { 187 - (BOOL)invokeWithError:(NSError **)error { 192 return NO; [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| D | Edits.java | 13 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to 15 …* {@link #addUnchanged(int)} (for no-change edits). Change edits are retained with full granularit… 16 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-… 26 * next() on the iterator, skips over no-change edits (unchanged regions). 27 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha… 30 * calling next() on the iterator, skips over no-change edits (unchanged regions). 33 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the 36 * <li>abc ⇨ abc (no-change) 39 * <li>e ⇨ e (no-change) 44 * <li>abc ⇨ abc (no-change) [all …]
|
| /external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/ |
| D | Edits.java | 12 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to 14 …* {@link #addUnchanged(int)} (for no-change edits). Change edits are retained with full granularit… 15 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-… 25 * next() on the iterator, skips over no-change edits (unchanged regions). 26 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha… 29 * calling next() on the iterator, skips over no-change edits (unchanged regions). 32 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the 35 * <li>abc ⇨ abc (no-change) 38 * <li>e ⇨ e (no-change) 43 * <li>abc ⇨ abc (no-change) [all …]
|
| /external/sdv/vsomeip/third_party/boost/pool/doc/ |
| D | jamfile.v2 | 13 path-constant boost-root : $(BOOST) ; 14 path-constant images_location : images ; # location of SVG and PNG images referenced by Quickbook. 28 # and problem with 'no type' in jamfile. 29 # error: target { ../../../boost/pool/detail/pool_construct.inc. } has no type 33 <doxygen:param>WARNINGS=YES # Default NO, but useful to see warnings, especially in a logfile. 37 # and make sure that there are no Doxygen errors or significant warnings in the log file. 38 <doxygen:param>RECURSIVE=NO # Search recursively down subdirectories. 39 <doxygen:param>EXTRACT_ALL=NO 41 <doxygen:param>EXTRACT_PRIVATE=NO 48 xml pool : pool.qbk : <include>$(boost-root)/tools/auto_index/include ; [all …]
|
| /external/icu/icu4c/source/i18n/ |
| D | messageformat2_parser.cpp | 25 and sets the offset in `parseError` to `index`. It does not alter control flow. 27 #define ERROR(parseError, errorCode, index) … argument 29 … setParseError(parseError, index); \ 33 // Returns true iff `index` is a valid index for the string `source` 34 static bool inBounds(const UnicodeString &source, uint32_t index) { in inBounds() argument 35 return (((int32_t)index) < source.length()); in inBounds() 39 // current line" count in `parseError`, iff `source[index]` is a newline 41 if (source[index] == LF) { in maybeAdvanceLine() 43 // add 1 to index to get the number of characters seen so far in maybeAdvanceLine() 45 parseError.lengthBeforeCurrentLine = index + 1; in maybeAdvanceLine() [all …]
|
| /external/mesa3d/src/gallium/drivers/d3d12/ci/ |
| D | d3d12-quick_shader.txt | 1 spec@arb_gpu_shader_int64@execution@indirect-array-two-accesses,Fail 2 spec@arb_separate_shader_objects@execution@layout-location-block-with-struct-member,Crash 3 spec@arb_separate_shader_objects@execution@layout-location-struct-mixed-with-implicitly-assigned-va… 4 spec@arb_shader_texture_lod@execution@glsl-fs-shadow2dgradarb-07,Fail 5 spec@arb_shader_texture_lod@execution@glsl-fs-shadow2dgradarb-cumulative,Fail 6 spec@arb_tessellation_shader@execution@dmat-vs-gs-tcs-tes,Fail 7 spec@arb_tessellation_shader@execution@gs-primitiveid-instanced,Fail 8 spec@arb_tessellation_shader@execution@tcs-output-unmatched,Crash 9 spec@arb_tessellation_shader@execution@tcs-tes-levels-out-of-bounds-read,Crash 10 spec@arb_tessellation_shader@execution@tcs-tes-levels-out-of-bounds-write,Crash [all …]
|
| /external/squashfs-tools/kernel/Documentation/filesystems/ |
| D | squashfs.txt | 4 Squashfs is a compressed read-only filesystem for Linux. 10 Squashfs is intended for general read-only filesystem use, for archival 15 Mailing list: squashfs-devel@lists.sourceforge.net 19 ---------------------- 31 Metadata compression: yes no 32 Directory indexes: yes no 33 Sparse file support: yes no 34 Tail-end packing (fragments): yes no 35 Exportable (NFS etc.): yes no 36 Hard link support: yes no [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/ExecutionEngine/JITLink/ |
| D | MachOLinkGraphBuilder.h | 1 //===----- MachOLinkGraphBuilder.h - MachO LinkGraph builder ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 45 assert((!Name || !Name->empty()) && "Name must be none or non-empty"); in NormalizedSymbol() 65 // to be null-terminated, hence the extra bytes on SegName and SectName. 107 /// Index is zero-based (MachO section indexes are usually one-based) and 108 /// assumed to be in-range. Client is responsible for checking. 109 NormalizedSection &getSectionByIndex(unsigned Index) { in getSectionByIndex() argument 110 auto I = IndexToSection.find(Index); in getSectionByIndex() [all …]
|
| /external/google-cloud-java/java-translate/proto-google-cloud-translate-v3beta1/src/main/java/com/google/cloud/translate/v3beta1/ |
| D | BatchDocumentOutputConfigOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 34 * While the input documents are being processed, we write/update an index 35 * file `index.csv` under `gcs_destination.output_uri_prefix` (for example, 36 * gs://translation_output/index.csv) The index file is generated/updated as 45 * no content to output. 48 * empty if we have no content to output. 49 * Once a row is present in index.csv, the input/output matching never 51 * processed and ready to be consumed (that is, no partial output file is 53 * Since index.csv will be keeping updated during the process, please make 54 * sure there is no custom retention policy applied on the output bucket [all …]
|
| /external/google-cloud-java/java-translate/proto-google-cloud-translate-v3/src/main/java/com/google/cloud/translate/v3/ |
| D | BatchDocumentOutputConfigOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 34 * While the input documents are being processed, we write/update an index 35 * file `index.csv` under `gcs_destination.output_uri_prefix` (for example, 36 * gs://translation_output/index.csv) The index file is generated/updated as 45 * no content to output. 48 * empty if we have no content to output. 49 * Once a row is present in index.csv, the input/output matching never 51 * processed and ready to be consumed (that is, no partial output file is 53 * Since index.csv will be keeping updated during the process, please make 54 * sure there is no custom retention policy applied on the output bucket [all …]
|