Searched full:prefixed (Results 1 – 25 of 2293) sorted by relevance
12345678910>>...92
| /external/rust/crates/tikv-jemalloc-sys/patches/ |
| D | rename_prefix.patch | 9 - #[cfg_attr(prefixed, link_name = "_rjem_malloc")] 10 + #[cfg_attr(prefixed, link_name = "je_malloc")] 18 - #[cfg_attr(prefixed, link_name = "_rjem_calloc")] 19 + #[cfg_attr(prefixed, link_name = "je_calloc")] 27 - #[cfg_attr(prefixed, link_name = "_rjem_posix_memalign")] 28 + #[cfg_attr(prefixed, link_name = "je_posix_memalign")] 36 - #[cfg_attr(prefixed, link_name = "_rjem_aligned_alloc")] 37 + #[cfg_attr(prefixed, link_name = "je_aligned_alloc")] 45 - #[cfg_attr(prefixed, link_name = "_rjem_realloc")] 46 + #[cfg_attr(prefixed, link_name = "je_realloc")] [all …]
|
| /external/clang/test/CodeGen/ |
| D | mcount.c | 2 …pg -triple powerpc-unknown-gnu-linux -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 3 … -triple powerpc64-unknown-gnu-linux -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 4 …triple powerpc64le-unknown-gnu-linux -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 5 …: %clang_cc1 -pg -triple i386-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 6 …%clang_cc1 -pg -triple x86_64-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 7 …lang_cc1 -pg -triple arm-netbsd-eabi -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 8 …clang_cc1 -pg -triple aarch64-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 9 …: %clang_cc1 -pg -triple mips-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 10 …clang_cc1 -pg -triple powerpc-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s 11 …ang_cc1 -pg -triple powerpc64-netbsd -emit-llvm -o - %s | FileCheck -check-prefix=CHECK-PREFIXED %s [all …]
|
| /external/pigweed/pw_tokenizer/public/pw_tokenizer/ |
| D | base64.h | 15 // This file provides functions for working with the prefixed Base64 format for 26 // Prefixed Base64: $Qlqz/hM= [9 bytes] 38 // Encodes a binary tokenized message as prefixed Base64 with a null terminator. 49 // Decodes a prefixed Base64 tokenized message to binary. Returns the size of 74 // prefixed Base64. Includes room for the prefix character ($) and encoded 86 // Encodes a binary tokenized message as prefixed Base64 with a null terminator. 104 // Encodes a binary tokenized message as prefixed Base64 to a pw::InlineString, 115 // Encodes a binary tokenized message as prefixed Base64 to a pw::InlineString. 133 // Decodes a prefixed Base64 tokenized message to binary. Returns the size of 144 // Decodes a prefixed Base64 tokenized message to binary in place. Returns the [all …]
|
| /external/cronet/third_party/icu/source/data/rbnf/ |
| D | lv.txt | 12 "%%spellout-prefixed:", 38 "11: >%%spellout-prefixed>padsmit;", 39 "20: <%%spellout-prefixed<desmit[ >>];", 41 "200: <%%spellout-prefixed<simt[ >>];", 43 "2000: <%%spellout-prefixed<t\u016Bksto\u0161[ >>];", 68 "20: <%%spellout-prefixed<desmit[ >>];", 70 "200: <%%spellout-prefixed<simt[ >>];", 72 "2000: <%%spellout-prefixed<t\u016Bksto\u0161[ >>];",
|
| /external/icu/icu4c/source/data/rbnf/ |
| D | lv.txt | 12 "%%spellout-prefixed:", 38 "11: >%%spellout-prefixed>padsmit;", 39 "20: <%%spellout-prefixed<desmit[ >>];", 41 "200: <%%spellout-prefixed<simt[ >>];", 43 "2000: <%%spellout-prefixed<t\u016Bksto\u0161[ >>];", 68 "20: <%%spellout-prefixed<desmit[ >>];", 70 "200: <%%spellout-prefixed<simt[ >>];", 72 "2000: <%%spellout-prefixed<t\u016Bksto\u0161[ >>];",
|
| /external/leveldb/db/ |
| D | filename.h | 32 // in the db named by "dbname". The result will be prefixed with 37 // in the db named by "dbname". The result will be prefixed with 42 // in the db named by "dbname". The result will be prefixed with 48 // prefixed with "dbname". 52 // of the current manifest file. The result will be prefixed with 57 // "dbname". The result will be prefixed with "dbname". 61 // The result will be prefixed with "dbname".
|
| /external/clang/test/FixIt/ |
| D | fixit-objc.m | 30 NSString *a = "Foo"; // expected-error {{string literal must be prefixed by '@'}} 31 id b = "Foo"; // expected-error {{string literal must be prefixed by '@'}} 32 g("Foo"); // expected-error {{string literal must be prefixed by '@'}} 33 h("Foo"); // expected-error {{string literal must be prefixed by '@'}} 34 h(("Foo")); // expected-error {{string literal must be prefixed by '@'}} 35 [t test:"Foo"]; // expected-error {{string literal must be prefixed by '@'}} 36 t.property = "Foo"; // expected-error {{string literal must be prefixed by '@'}}
|
| D | fixit-objc-arc.m | 20 NSString *a = "Foo"; // expected-error {{string literal must be prefixed by '@'}} 21 g("Foo"); // expected-error {{string literal must be prefixed by '@'}} 22 [t test:"Foo"]; // expected-error {{string literal must be prefixed by '@'}} 23 t.property = "Foo"; // expected-error {{string literal must be prefixed by '@'}}
|
| D | objc-literals.m | 40 17, // expected-error{{numeric literal must be prefixed by '@' in a collection}} 41 'a', // expected-error{{character literal must be prefixed by '@'}} 42 "blah" // expected-error{{string literal must be prefixed by '@'}}
|
| /external/cldr/common/rbnf/ |
| D | lv.xml | 22 <ruleset type="spellout-prefixed" access="private"> 49 <rbnfrule value="11">→%%spellout-prefixed→padsmit;</rbnfrule> 50 <rbnfrule value="20">←%%spellout-prefixed←desmit[ →→];</rbnfrule> 52 <rbnfrule value="200">←%%spellout-prefixed←simt[ →→];</rbnfrule> 54 <rbnfrule value="2000">←%%spellout-prefixed←tūkstoš[ →→];</rbnfrule> 80 <rbnfrule value="20">←%%spellout-prefixed←desmit[ →→];</rbnfrule> 82 <rbnfrule value="200">←%%spellout-prefixed←simt[ →→];</rbnfrule> 84 <rbnfrule value="2000">←%%spellout-prefixed←tūkstoš[ →→];</rbnfrule>
|
| /external/grpc-grpc/doc/ |
| D | c-style-guide.md | 73 - Non-static functions must be prefixed by `grpc_` 74 - Static functions must *not* be prefixed by `grpc_` 75 - Typenames of `struct`s , `union`s, and `enum`s must be prefixed by `grpc_` if 76 they are declared in a header file. They must not be prefixed by `grpc_` if 81 prefixed with `GRPC_` (except for `#define` macros that are being used to 84 be prefixed with `GRPC_`.
|
| D | PROTOCOL-HTTP2.md | 13 * Request → Request-Headers \*Length-Prefixed-Message EOS 14 * Response → (Response-Headers \*Length-Prefixed-Message Trailers) / Trailers-Only 19 * Request → Request-Headers \*Length-Prefixed-Message EOS 93 The repeated sequence of **Length-Prefixed-Message** items is delivered in DATA frames 95 * **Length-Prefixed-Message** → Compressed-Flag Message-Length Message 106 * **Response** → (Response-Headers \*Length-Prefixed-Message Trailers) / Trailers-Only 159 <Length-Prefixed Message> 169 <Length-Prefixed Message> 206 DATA frame boundaries have no relation to **Length-Prefixed-Message** boundaries and implementation…
|
| /external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/converter/attribute/ |
| D | LocalDateTimeAttributeConverter.java | 43 …* <li>Y is a year between {@link Year#MIN_VALUE} and {@link Year#MAX_VALUE} (prefixed with - i… 44 * <li>M is a 2-character, zero-prefixed month between 01 and 12</li> 45 * <li>D is a 2-character, zero-prefixed day between 01 and 31</li> 46 * <li>H is a 2-character, zero-prefixed hour between 00 and 23</li> 47 * <li>I is a 2-character, zero-prefixed minute between 00 and 59</li> 48 * <li>S is a 2-character, zero-prefixed second between 00 and 59</li> 49 * <li>N is a 9-character, zero-prefixed nanosecond between 000,000,000 and 999,999,999.
|
| D | LocalTimeAttributeConverter.java | 38 * <li>H is a 2-character, zero-prefixed hour between 00 and 23</li> 39 * <li>I is a 2-character, zero-prefixed minute between 00 and 59</li> 40 * <li>S is a 2-character, zero-prefixed second between 00 and 59</li> 41 * <li>N is a 9-character, zero-prefixed nanosecond between 000,000,000 and 999,999,999.
|
| /external/rust/crates/ring/patches/ |
| D | hardcode_prefix.patch | 1 --- src/prefixed.rs.orig 2023-11-21 14:54:21.563997351 +0000 2 +++ src/prefixed.rs 2023-11-21 14:48:18.346428666 +0000 9 // Calculate the prefixed name in a separate layer of macro expansion 29 + // Calculate the prefixed name in a separate layer of macro expansion
|
| /external/flatbuffers/swift/Sources/FlatBuffers/ |
| D | Root.swift | 23 /// Takes in a prefixed sized buffer, where the prefixed size would be skipped. 45 /// Takes in a prefixed sized buffer, where we check if the sized buffer is equal to prefix size. 70 /// Takes in a prefixed sized buffer, where the prefixed size would be skipped.
|
| /external/rust/crates/tikv-jemalloc-sys/src/ |
| D | lib.rs | 147 #[cfg_attr(prefixed, link_name = "je_malloc")] 158 #[cfg_attr(prefixed, link_name = "je_calloc")] 182 #[cfg_attr(prefixed, link_name = "je_posix_memalign")] 202 #[cfg_attr(prefixed, link_name = "je_aligned_alloc")] 241 #[cfg_attr(prefixed, link_name = "je_realloc")] 257 #[cfg_attr(prefixed, link_name = "je_free")] 277 #[cfg_attr(prefixed, link_name = "je_mallocx")] 310 #[cfg_attr(prefixed, link_name = "je_rallocx")] 351 #[cfg_attr(prefixed, link_name = "je_xallocx")] 366 #[cfg_attr(prefixed, link_name = "je_sallocx")] [all …]
|
| /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
| D | property-names.js | 17 var prefixed = {}; 23 prefixed[name] = candidate; 34 return prefixed[property] || property;
|
| /external/flatbuffers/java/com/google/flatbuffers/ |
| D | ByteBufferUtil.java | 35 * @param bb a size-prefixed buffer 43 * Create a duplicate of a size-prefixed `ByteBuffer` that has its position 46 * @param bb a size-prefixed buffer
|
| /external/autotest/server/ |
| D | constants.py | 10 @var BOARD_PREFIX The string with which board labels are prefixed. 11 @var MODEL_PREFIX The string with which model labels are prefixed. 12 @var POOL_PREFIX The stright with which pool labels are prefixed.
|
| /external/bazelbuild-rules_go/go/tools/builders/ |
| D | stdliblist_test.go | 37 t.Errorf("ID should be prefixed with @io_bazel_rules_go//stdlib :%v", result) 40 t.Errorf("export file should be prefixed with __BAZEL_OUTPUT_BASE__ :%v", result) 44 … t.Errorf("all go files should be prefixed with __BAZEL_OUTPUT_BASE__/external/go_sdk :%v", result)
|
| /external/google-cloud-java/java-life-sciences/proto-google-cloud-life-sciences-v2beta/src/main/java/com/google/cloud/lifesciences/v2beta/ |
| D | NetworkOrBuilder.java | 31 * be prefixed with `global/networks/` unless it contains a `/`, in which 46 * be prefixed with `global/networks/` unless it contains a `/`, in which 80 * The value is prefixed with `regions/*/subnetworks/` unless it contains a 98 * The value is prefixed with `regions/*/subnetworks/` unless it contains a
|
| /external/protobuf/objectivec/Tests/ |
| D | unittest_objc_options.proto | 45 // Verify that messages that already have a prefix aren't prefixed twice. 49 // Verify that enums that already have a prefix aren't prefixed twice. 59 // Verify that classes named the same as prefixes are prefixed.
|
| /external/cronet/third_party/protobuf/objectivec/Tests/ |
| D | unittest_objc_options.proto | 45 // Verify that messages that already have a prefix aren't prefixed twice. 49 // Verify that enums that already have a prefix aren't prefixed twice. 59 // Verify that classes named the same as prefixes are prefixed.
|
| /external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/ |
| D | InterconnectOutageNotificationOrBuilder.java | 143 …ain up, but with reduced bandwidth. Note that the versions of this enum prefixed with "IT_" have b… 156 …ain up, but with reduced bandwidth. Note that the versions of this enum prefixed with "IT_" have b… 169 …ain up, but with reduced bandwidth. Note that the versions of this enum prefixed with "IT_" have b… 285 …with this notification is complete. Note that the versions of this enum prefixed with "NS_" have b… 298 …with this notification is complete. Note that the versions of this enum prefixed with "NS_" have b… 311 …with this notification is complete. Note that the versions of this enum prefixed with "NS_" have b…
|
12345678910>>...92