| /external/curl/lib/ |
| D | mime.c | 11 * you should have received as part of this distribution. The terms 67 curl_mimepart *part); 68 static curl_off_t encoder_nop_size(curl_mimepart *part); 70 curl_mimepart *part); 72 curl_mimepart *part); 73 static curl_off_t encoder_base64_size(curl_mimepart *part); 75 curl_mimepart *part); 76 static curl_off_t encoder_qp_size(curl_mimepart *part); 77 static curl_off_t mime_size(curl_mimepart *part); 383 struct curl_mimepart *part) in encoder_nop_read() argument [all …]
|
| /external/gson/gson/src/test/java/com/google/gson/functional/ |
| D | JsonAdapterAnnotationOnFieldsTest.java | 52 String json = gson.toJson(new Gizmo(new Part("Part"))); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault() 53 assertEquals("{\"part\":\"GizmoPartTypeAdapterFactory\"}", json); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault() 54 Gizmo computer = gson.fromJson("{'part':'Part'}", Gizmo.class); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault() 55 assertEquals("GizmoPartTypeAdapterFactory", computer.part.name); in testClassAnnotationAdapterFactoryTakesPrecedenceOverDefault() 72 .registerTypeAdapter(Part.class, new TypeAdapter<Part>() { in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() 73 @Override public void write(JsonWriter out, Part part) throws IOException { in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() 76 @Override public Part read(JsonReader in) throws IOException { in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() 80 String json = gson.toJson(new Gadget(new Part("screen"))); in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() 81 assertEquals("{\"part\":\"PartJsonFieldAnnotationAdapter\"}", json); in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() 82 Gadget gadget = gson.fromJson("{'part':'screen'}", Gadget.class); in testFieldAnnotationTakesPrecedenceOverRegisteredTypeAdapter() [all …]
|
| /external/e2fsprogs/tests/f_badorphan/ |
| D | expect.1 | 8 Inodes that were part of a corrupted orphan linked list found. Fix? yes 10 Inode 13 was part of the orphaned inode list. FIXED. 11 Inode 17 was part of the orphaned inode list. FIXED. 14 Inode 19 was part of the orphaned inode list. FIXED. 15 Inode 22 was part of the orphaned inode list. FIXED. 16 Inode 23 was part of the orphaned inode list. FIXED. 17 Inode 24 was part of the orphaned inode list. FIXED. 18 Inode 25 was part of the orphaned inode list. FIXED. 19 Inode 26 was part of the orphaned inode list. FIXED. 20 Inode 27 was part of the orphaned inode list. FIXED. [all …]
|
| /external/libhevc/common/arm/ |
| D | ihevc_itrans_recon_8x8.s | 193 vmull.s16 q10,d2,d0[0] @// y0 * cos4(part of c0 and c1) 195 vmull.s16 q9,d3,d1[2] @// y2 * sin2 (q3 is freed by this time)(part of d1) 198 vmull.s16 q12,d6,d0[1] @// y1 * cos1(part of b0) 200 vmull.s16 q13,d6,d0[3] @// y1 * cos3(part of b1) 202 vmull.s16 q14,d6,d1[1] @// y1 * sin3(part of b2) 204 vmull.s16 q15,d6,d1[3] @// y1 * sin1(part of b3) 206 vmlal.s16 q12,d7,d0[3] @// y1 * cos1 + y3 * cos3(part of b0) 208 vmlsl.s16 q13,d7,d1[3] @// y1 * cos3 - y3 * sin1(part of b1) 210 vmlsl.s16 q14,d7,d0[1] @// y1 * sin3 - y3 * cos1(part of b2) 212 vmlsl.s16 q15,d7,d1[1] @// y1 * sin1 - y3 * sin3(part of b3) [all …]
|
| /external/openthread/third_party/mbedtls/repo/tests/suites/ |
| D | test_suite_psa_crypto_hash.data | 313 PSA hash multi part: SHA-1 Test Vector NIST CAVS #1 317 PSA hash multi part: SHA-1 Test Vector NIST CAVS #2 321 PSA hash multi part: SHA-1 Test Vector NIST CAVS #3 325 PSA hash multi part: SHA-1 Test Vector NIST CAVS #4 329 PSA hash multi part: SHA-1 Test Vector NIST CAVS #5 333 PSA hash multi part: SHA-1 Test Vector NIST CAVS #6 337 PSA hash multi part: SHA-1 Test Vector NIST CAVS #7 341 PSA hash multi part: SHA-1 Test Vector NIST CAVS #8 345 PSA hash multi part: SHA-1 Test Vector NIST CAVS #9 349 PSA hash multi part: SHA-1 Test Vector NIST CAVS #10 [all …]
|
| /external/openscreen/cast/streaming/ |
| D | frame_collector_unittest.cc | 50 RtpPacketParser::ParseResult part; in TEST() local 51 part.rtp_timestamp = kSomeRtpTimestamp + (RtpTimeDelta::FromTicks(200) * i); in TEST() 52 part.frame_id = frame_id; in TEST() 53 part.packet_id = 0; in TEST() 54 part.max_packet_id = 0; in TEST() 56 part.is_key_frame = true; in TEST() 57 // Do not set |part.new_playout_delay|. in TEST() 59 part.is_key_frame = false; in TEST() 60 part.new_playout_delay = std::chrono::milliseconds(800); in TEST() 62 part.referenced_frame_id = kSomeFrameId; in TEST() [all …]
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | dosio.c | 91 static void lba2chs(unsigned long lba_addr, CHS *chs, PARTITION *part) in lba2chs() argument 96 abss = (lba_addr >> 9) + part->start; in lba2chs() 97 chs->cyl = abss / (part->sects * part->heads); in lba2chs() 98 chs->head = (abss / part->sects) % part->heads; in lba2chs() 99 chs->sector = (abss % part->sects) + 1; in lba2chs() 150 static io_channel alloc_io_channel(PARTITION *part) in alloc_io_channel() argument 160 ioch->name = (char *)malloc(strlen(part->dev)+1); in alloc_io_channel() 165 strcpy(ioch->name, part->dev); in alloc_io_channel() 166 ioch->private_data = part; in alloc_io_channel() 184 PARTITION *part; in dos_open() local [all …]
|
| /external/mbedtls/tests/suites/ |
| D | test_suite_psa_crypto_hash.data | 329 PSA hash multi part: SHA-1 Test Vector NIST CAVS #1 333 PSA hash multi part: SHA-1 Test Vector NIST CAVS #2 337 PSA hash multi part: SHA-1 Test Vector NIST CAVS #3 341 PSA hash multi part: SHA-1 Test Vector NIST CAVS #4 345 PSA hash multi part: SHA-1 Test Vector NIST CAVS #5 349 PSA hash multi part: SHA-1 Test Vector NIST CAVS #6 353 PSA hash multi part: SHA-1 Test Vector NIST CAVS #7 357 PSA hash multi part: SHA-1 Test Vector NIST CAVS #8 361 PSA hash multi part: SHA-1 Test Vector NIST CAVS #9 365 PSA hash multi part: SHA-1 Test Vector NIST CAVS #10 [all …]
|
| /external/libmpeg2/common/arm/ |
| D | impeg2_idct.s | 448 vmull.s16 q10, d2, d0[0] @// y0 * cos4(part of c0 and c1) 450 vmull.s16 q9, d3, d1[2] @// y2 * sin2 (Q3 is freed by this time)(part of d1) 453 vmull.s16 q12, d6, d0[1] @// y1 * cos1(part of b0) 455 vmull.s16 q13, d6, d0[3] @// y1 * cos3(part of b1) 457 vmull.s16 q14, d6, d1[1] @// y1 * sin3(part of b2) 459 vmull.s16 q15, d6, d1[3] @// y1 * sin1(part of b3) 461 vmlal.s16 q12, d7, d0[3] @// y1 * cos1 + y3 * cos3(part of b0) 463 vmlsl.s16 q13, d7, d1[3] @// y1 * cos3 - y3 * sin1(part of b1) 465 vmlsl.s16 q14, d7, d0[1] @// y1 * sin3 - y3 * cos1(part of b2) 467 vmlsl.s16 q15, d7, d1[1] @// y1 * sin1 - y3 * sin3(part of b3) [all …]
|
| /external/curl/docs/libcurl/ |
| D | curl_mime_subparts.md | 18 curl_mime_subparts - set sub-parts of a multipart mime part 25 CURLcode curl_mime_subparts(curl_mimepart *part, curl_mime *subparts); 30 curl_mime_subparts(3) sets a multipart mime part's content from a mime 33 *part* is a handle to the multipart part. 37 multipart part and must not be freed explicitly. It may however be updated by 40 Setting a part's contents multiple times is valid: only the value set by the 41 last call is retained. It is possible to unassign previous part's contents by 57 /* The inline part is an alternative proposing the html and the text 60 curl_mimepart *part; 63 part = curl_mime_addpart(alt); [all …]
|
| /external/libhevc/common/arm64/ |
| D | ihevc_itrans_recon_8x8.s | 187 smull v20.4s, v2.4h, v0.h[0] //// y0 * cos4(part of c0 and c1) 189 smull v18.4s, v3.4h, v1.h[2] //// y2 * sin2 (q3 is freed by this time)(part of d1) 192 smull v24.4s, v6.4h, v0.h[1] //// y1 * cos1(part of b0) 194 smull v26.4s, v6.4h, v0.h[3] //// y1 * cos3(part of b1) 196 smull v28.4s, v6.4h, v1.h[1] //// y1 * sin3(part of b2) 198 smull v30.4s, v6.4h, v1.h[3] //// y1 * sin1(part of b3) 200 smlal v24.4s, v7.4h, v0.h[3] //// y1 * cos1 + y3 * cos3(part of b0) 202 smlsl v26.4s, v7.4h, v1.h[3] //// y1 * cos3 - y3 * sin1(part of b1) 204 smlsl v28.4s, v7.4h, v0.h[1] //// y1 * sin3 - y3 * cos1(part of b2) 206 smlsl v30.4s, v7.4h, v1.h[1] //// y1 * sin1 - y3 * sin3(part of b3) [all …]
|
| /external/curl/tests/libtest/ |
| D | lib643.c | 11 * you should have received as part of this distribution. The terms 65 curl_mimepart *part = NULL; in once() local 91 part = curl_mime_addpart(mime); in once() 92 if(!part) { in once() 100 /* Fill in the file upload part */ in once() 102 res = curl_mime_name(part, "sendfile"); in once() 104 res = curl_mime_data_cb(part, datasize, read_callback, in once() 107 res = curl_mime_filename(part, "postit2.c"); in once() 111 res = curl_mime_name(part, "sendfile alternative"); in once() 113 res = curl_mime_data_cb(part, datasize, read_callback, in once() [all …]
|
| /external/icu/android_icu4j/src/main/java/android/icu/text/ |
| D | MessagePattern.java | 23 //Note: Minimize ICU dependencies, only use a very small part of the ICU core. 46 * For every _START "part", {@link #getLimitPartIndex(int)} efficiently returns 47 * the index of the corresponding _LIMIT "part". 67 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 68 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE. 71 * <li>In the pluralStyle, the first, optional numeric Part has the "offset:" value. 72 * The optional numeric Part between each (ARG_SELECTOR, message) pair 75 * <li>The REPLACE_NUMBER Part can occur only in an immediate sub-message of the pluralStyle. 383 Part part; in autoQuoteApostropheDeep() local 384 if((part=getPart(--i)).getType()==Part.Type.INSERT_CHAR) { in autoQuoteApostropheDeep() [all …]
|
| /external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/ |
| D | MessagePattern.java | 22 //Note: Minimize ICU dependencies, only use a very small part of the ICU core. 45 * For every _START "part", {@link #getLimitPartIndex(int)} efficiently returns 46 * the index of the corresponding _LIMIT "part". 66 * between parts of a message, from one part's getLimit() to the next part's getIndex(). 67 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE. 70 * <li>In the pluralStyle, the first, optional numeric Part has the "offset:" value. 71 * The optional numeric Part between each (ARG_SELECTOR, message) pair 74 * <li>The REPLACE_NUMBER Part can occur only in an immediate sub-message of the pluralStyle. 406 Part part; in autoQuoteApostropheDeep() local 407 if((part=getPart(--i)).getType()==Part.Type.INSERT_CHAR) { in autoQuoteApostropheDeep() [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/Vectorize/ |
| D | VPlanRecipes.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 193 unsigned Part) { in generateInstruction() argument 198 Value *A = State.get(getOperand(0), Part); in generateInstruction() 199 Value *B = State.get(getOperand(1), Part); in generateInstruction() 202 State.set(this, V, Part); in generateInstruction() 208 Value *A = State.get(getOperand(0), Part); in generateInstruction() 210 State.set(this, V, Part); in generateInstruction() 214 Value *IV = State.get(getOperand(0), Part); in generateInstruction() 215 Value *TC = State.get(getOperand(1), Part); in generateInstruction() 217 State.set(this, V, Part); in generateInstruction() [all …]
|
| /external/icu/libicu/cts_headers/unicode/ |
| D | messagepattern.h | 99 * MessagePattern::Part type constants. 109 * There is always a later MSG_LIMIT part. 125 * would be indicated with such a part. 139 * When formatting, replace this part's substring with the 150 * This part is followed by either an ARG_NUMBER or ARG_NAME, 152 * and finally an ARG_LIMIT part. 195 * The part value is the integer value. 202 * The part value is an index into an internal array of numeric values; 215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts. 228 * The argument has a "simple" type which is provided by the ARG_TYPE part. [all …]
|
| /external/cronet/third_party/icu/source/common/unicode/ |
| D | messagepattern.h | 99 * MessagePattern::Part type constants. 109 * There is always a later MSG_LIMIT part. 125 * would be indicated with such a part. 139 * When formatting, replace this part's substring with the 150 * This part is followed by either an ARG_NUMBER or ARG_NAME, 152 * and finally an ARG_LIMIT part. 195 * The part value is the integer value. 202 * The part value is an index into an internal array of numeric values; 215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts. 228 * The argument has a "simple" type which is provided by the ARG_TYPE part. [all …]
|
| /external/icu/icu4c/source/common/unicode/ |
| D | messagepattern.h | 99 * MessagePattern::Part type constants. 109 * There is always a later MSG_LIMIT part. 125 * would be indicated with such a part. 139 * When formatting, replace this part's substring with the 150 * This part is followed by either an ARG_NUMBER or ARG_NAME, 152 * and finally an ARG_LIMIT part. 195 * The part value is the integer value. 202 * The part value is an index into an internal array of numeric values; 215 * Returned by Part.getArgType() for ARG_START and ARG_LIMIT parts. 228 * The argument has a "simple" type which is provided by the ARG_TYPE part. [all …]
|
| /external/perfetto/test/trace_processor/diff_tests/stdlib/span_join/ |
| D | tests_outer_join.py | 37 part BIGINT, 38 PRIMARY KEY (part, ts) 44 part BIGINT, 45 PRIMARY KEY (part, ts) 48 INSERT INTO t1(ts, dur, part) 52 CREATE VIRTUAL TABLE sp USING span_outer_join(t1 PARTITIONED part, 53 t2 PARTITIONED part); 58 "ts","dur","part" 166 part BIGINT, 167 PRIMARY KEY (part, ts) [all …]
|
| /external/swiftshader/third_party/llvm-16.0/llvm/lib/Object/ |
| D | DXContainer.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 45 // number of parts and part data itself is not required to be padded. in readInteger() 62 Error DXContainer::parseDXILHeader(StringRef Part) { in parseDXILHeader() argument 64 return parseFailed("More than one DXIL part is present in the file"); in parseDXILHeader() 65 const char *Current = Part.begin(); in parseDXILHeader() 67 if (Error Err = readStruct(Part, Current, Header)) in parseDXILHeader() 74 Error DXContainer::parseShaderFlags(StringRef Part) { in parseShaderFlags() argument 76 return parseFailed("More than one SFI0 part is present in the file"); in parseShaderFlags() 78 if (Error Err = readInteger(Part, Part.begin(), FlagValue)) in parseShaderFlags() 84 Error DXContainer::parseHash(StringRef Part) { in parseHash() argument [all …]
|
| /external/curl/tests/data/ |
| D | test571 | 53 rtp: part 2 channel 1 size 10 54 rtp: part 2 channel 0 size 500 55 rtp: part 2 channel 0 size 196 56 rtp: part 2 channel 0 size 124 57 rtp: part 2 channel 0 size 824 58 rtp: part 2 channel 0 size 18 size_err -6 59 rtp: part 3 channel 1 size 10 60 rtp: part 3 channel 0 size 50 61 rtp: part 4 channel 0 size 798 62 rtp: part 4 channel 0 size 42 [all …]
|
| /external/libmpeg2/common/armv8/ |
| D | impeg2_idct.s | 387 smull v20.4s, v2.4h, v0.h[0] //// y0 * cos4(part of c0 and c1) 389 smull v18.4s, v3.4h, v1.h[2] //// y2 * sin2 (q3 is freed by this time)(part of d1) 392 smull v24.4s, v6.4h, v0.h[1] //// y1 * cos1(part of b0) 394 smull v26.4s, v6.4h, v0.h[3] //// y1 * cos3(part of b1) 396 smull v28.4s, v6.4h, v1.h[1] //// y1 * sin3(part of b2) 398 smull v30.4s, v6.4h, v1.h[3] //// y1 * sin1(part of b3) 400 smlal v24.4s, v7.4h, v0.h[3] //// y1 * cos1 + y3 * cos3(part of b0) 402 smlsl v26.4s, v7.4h, v1.h[3] //// y1 * cos3 - y3 * sin1(part of b1) 404 smlsl v28.4s, v7.4h, v0.h[1] //// y1 * sin3 - y3 * cos1(part of b2) 406 smlsl v30.4s, v7.4h, v1.h[1] //// y1 * sin1 - y3 * sin3(part of b3) [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | gmail_v1.users.drafts.html | 125 …"payload": { # A single MIME message part. # The parsed email structure in the message p… 126 …quot;body": { # The body of a single MIME message part. # The message part body for this part… 127 …chments.get` request. When not present, the entire content of the message part body is contained i… 128 …"data": "A String", # The body data of a MIME message part as a base64url enco… 129 … "size": 42, # Number of bytes for the message part data (encoding notwithstanding). 131 …ing", # The filename of the attachment. Only present if this message part represents an attac… 132 …"headers": [ # List of headers on this message part. For the top-level message part, rep… 138 "mimeType": "A String", # The MIME type of the message part. 139 "partId": "A String", # The immutable ID of the message part. 140 …e parts of this part. This only applies to container MIME message parts, for example `multipart/*`… [all …]
|
| D | gmail_v1.users.messages.html | 220 …"payload": { # A single MIME message part. # The parsed email structure in the message p… 221 …quot;body": { # The body of a single MIME message part. # The message part body for this part… 222 …chments.get` request. When not present, the entire content of the message part body is contained i… 223 …"data": "A String", # The body data of a MIME message part as a base64url enco… 224 "size": 42, # Number of bytes for the message part data (encoding notwithstanding). 226 …ing", # The filename of the attachment. Only present if this message part represents an attac… 227 …"headers": [ # List of headers on this message part. For the top-level message part, rep… 233 "mimeType": "A String", # The MIME type of the message part. 234 "partId": "A String", # The immutable ID of the message part. 235 …e parts of this part. This only applies to container MIME message parts, for example `multipart/*`… [all …]
|
| D | gmail_v1.users.history.html | 132 …"payload": { # A single MIME message part. # The parsed email structure in the message p… 133 …quot;body": { # The body of a single MIME message part. # The message part body for this part… 134 …chments.get` request. When not present, the entire content of the message part body is contained i… 135 …"data": "A String", # The body data of a MIME message part as a base64url enco… 136 … "size": 42, # Number of bytes for the message part data (encoding notwithstanding). 138 …ing", # The filename of the attachment. Only present if this message part represents an attac… 139 …"headers": [ # List of headers on this message part. For the top-level message part, rep… 145 "mimeType": "A String", # The MIME type of the message part. 146 "partId": "A String", # The immutable ID of the message part. 147 …e parts of this part. This only applies to container MIME message parts, for example `multipart/*`… [all …]
|