Home
last modified time | relevance | path

Searched refs:trailer (Results 1 – 25 of 42) sorted by relevance

12

/external/llvm/test/MC/AsmParser/
Ddirective_rept-diagnostics.s33 .global trailer symbol
34 .type trailer,@object
35 trailer: label
36 .rep 0 trailer
39 # CHECK: .rep 0 trailer
/external/tcpdump/tests/
Dripv2_auth.out16 Auth trailer:
23 Auth trailer:
30 Auth trailer:
38 Auth trailer:
46 Auth trailer:
54 Auth trailer:
62 Auth trailer:
71 Auth trailer:
80 Auth trailer:
90 Auth trailer:
/external/llvm/test/MC/ARM/
Ddirective-align.s21 trailer: label
25 @ CHECK-LABEL: trailer
/external/chromium_org/third_party/leveldatabase/src/table/
Dtable_builder.cc183 char trailer[kBlockTrailerSize]; in WriteRawBlock() local
184 trailer[0] = type; in WriteRawBlock()
186 crc = crc32c::Extend(crc, trailer, 1); // Extend crc to cover block type in WriteRawBlock()
187 EncodeFixed32(trailer+1, crc32c::Mask(crc)); in WriteRawBlock()
188 r->status = r->file->Append(Slice(trailer, kBlockTrailerSize)); in WriteRawBlock()
/external/chromium_org/third_party/webrtc/base/
Dsslidentity.cc54 size_t trailer = pem_string.find("-----END " + pem_type + "-----"); in PemToDer() local
55 if (trailer == std::string::npos) in PemToDer()
58 std::string inner = pem_string.substr(body + 1, trailer - (body + 1)); in PemToDer()
/external/chromium_org/chrome/common/extensions/docs/static/sass/
D_typography.scss38 @include trailer(0, $h2-font-size);
44 @include trailer(0.4, $h3-font-size);
50 @include trailer(0, $h4-font-size);
55 @include trailer(0, $h5-font-size);
60 @include trailer(0, $h6-font-size);
D_normalize.scss217 @include trailer(1, $h1-font-size);
224 @include trailer(1, $h2-font-size);
230 @include trailer(1, $h3-font-size);
236 @include trailer(1, $h4-font-size);
242 @include trailer(1, $h5-font-size);
248 @include trailer(1, $h6-font-size);
/external/mesa3d/src/mapi/glapi/gen/
DglX_proto_send.py835 trailer = " }"
837 trailer = None
866 if trailer: print trailer
887 trailer = " }"
889 trailer = None
921 if trailer: print trailer
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
DglX_proto_send.py835 trailer = " }"
837 trailer = None
866 if trailer: print trailer
887 trailer = " }"
889 trailer = None
921 if trailer: print trailer
/external/srtp/googlepatches/
Dgoogle-7-srtp-security-fix.patch66 trailer = (uint32_t *) ((char *) hdr +
68 - if (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) {
70 + e_bit_in_packet = (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) == SRTCP_E_BYTE_BIT;
/external/chromium_org/third_party/leveldatabase/src/doc/
Dlog_format.txt5 block := record* trailer?
13 won't fit). Any leftover bytes here form the trailer, which must
49 be left empty as the trailer.
/external/skia/experimental/PdfViewer/pdfparser/native/
DSkPdfNativeDoc.cpp340 SkPdfFileTrailerDictionary* trailer = (SkPdfFileTrailerDictionary*)&token; in readTrailer() local
341 if (!trailer->valid()) { in readTrailer()
346 SkPdfNativeObject* ref = trailer->Root(NULL); in readTrailer()
356 if (trailer->has_Prev()) { in readTrailer()
357 *prev = (long)trailer->Prev(NULL); in readTrailer()
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
DSkPdfNativeDoc.cpp340 SkPdfFileTrailerDictionary* trailer = (SkPdfFileTrailerDictionary*)&token; in readTrailer() local
341 if (!trailer->valid()) { in readTrailer()
346 SkPdfNativeObject* ref = trailer->Root(NULL); in readTrailer()
356 if (trailer->has_Prev()) { in readTrailer()
357 *prev = (long)trailer->Prev(NULL); in readTrailer()
/external/chromium_org/sandbox/mac/
Dmach_message_server.cc82 mach_msg_audit_trailer_t* trailer = in GetMessageSenderPID() local
88 audit_token_to_au32(trailer->msgh_audit, in GetMessageSenderPID()
/external/srtp/srtp/
Dsrtp.c1450 uint32_t *trailer; /* pointer to start of trailer */ in srtp_protect_rtcp() local
1519 trailer = (uint32_t *) ((char *)enc_start + enc_octet_len); in srtp_protect_rtcp()
1522 *trailer = htonl(SRTCP_E_BIT); /* set encrypt bit */ in srtp_protect_rtcp()
1527 *trailer = 0x00000000; /* set encrypt bit */ in srtp_protect_rtcp()
1550 *trailer |= htonl(seq_num); in srtp_protect_rtcp()
1633 uint32_t *trailer; /* pointer to start of trailer */ in srtp_unprotect_rtcp() local
1704 trailer = (uint32_t *) ((char *) hdr + in srtp_unprotect_rtcp()
1706 e_bit_in_packet = (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) == SRTCP_E_BYTE_BIT; in srtp_unprotect_rtcp()
1744 seq_num = ntohl(*trailer) & SRTCP_INDEX_MASK; in srtp_unprotect_rtcp()
/external/chromium_org/third_party/libsrtp/srtp/srtp/
Dsrtp.c1653 uint32_t *trailer; /* pointer to start of trailer */ in srtp_protect_rtcp() local
1722 trailer = (uint32_t *) ((char *)enc_start + enc_octet_len); in srtp_protect_rtcp()
1725 *trailer = htonl(SRTCP_E_BIT); /* set encrypt bit */ in srtp_protect_rtcp()
1730 *trailer = 0x00000000; /* set encrypt bit */ in srtp_protect_rtcp()
1753 *trailer |= htonl(seq_num); in srtp_protect_rtcp()
1836 uint32_t *trailer; /* pointer to start of trailer */ in srtp_unprotect_rtcp() local
1902 trailer = (uint32_t *) ((char *) hdr + in srtp_unprotect_rtcp()
1904 if (*((unsigned char *) trailer) & SRTCP_E_BYTE_BIT) { in srtp_unprotect_rtcp()
1938 seq_num = ntohl(*trailer) & SRTCP_INDEX_MASK; in srtp_unprotect_rtcp()
/external/ipsec-tools/src/racoon/
Disakmp_frag.c94 unsigned int trailer; local
111 (sizeof(*hdr) + sizeof(*fraghdr) + sizeof(trailer));
/external/chromium_org/content/browser/
Dmach_broker_mac.mm40 // a message. Contains a message trailer with audit information.
42 mach_msg_audit_trailer_t trailer;
112 audit_token_to_au32(msg.trailer.msgh_audit,
/external/chromium_org/components/data_reduction_proxy/browser/
Ddata_reduction_proxy_protocol_unittest.cc130 std::string trailer = in TestProxyFallback() local
140 method, trailer.c_str()); in TestProxyFallback()
160 method, trailer.c_str()); in TestProxyFallback()
/external/llvm/test/CodeGen/X86/
Dtailcallbyval64.ll26 ; Expect the trailer.
/external/chromium_org/net/http/
Dhttp_network_layer_unittest.cc130 std::string trailer = in TestProxyFallbackByMethodWithMockReads() local
137 "%s", method.c_str(), trailer.c_str()); in TestProxyFallbackByMethodWithMockReads()
/external/valgrind/main/coregrind/m_syswrap/
Dsyswrap-darwin.c4727 mach_msg_trailer_t trailer; in POST() member
4768 mach_msg_trailer_t trailer; in POST() member
5129 mach_msg_trailer_t trailer; in POST() member
5149 mach_msg_trailer_t trailer; in PRE() member
5170 mach_msg_trailer_t trailer; in POST() member
5241 mach_msg_trailer_t trailer; in POST() member
5325 mach_msg_trailer_t trailer; in POST() member
5385 mach_msg_trailer_t trailer; in POST() member
5442 mach_msg_trailer_t trailer; in POST() member
5498 mach_msg_trailer_t trailer; in POST() member
[all …]
/external/zlib/src/contrib/delphi/
Dreadme.txt51 zlib stream header and trailer. Raw deflate streams are used
/external/chromium_org/third_party/skia/src/pdf/
DSkPDFFont.cpp240 const uint8_t* trailer = hexData + hexDataLen; in handle_type1_stream() local
244 for (; hexData < trailer; hexData++) { in handle_type1_stream()
1312 size_t trailer SK_INIT_TO_AVOID_WARNING; in addFontDescriptor()
1315 &data, &trailer)); in addFontDescriptor()
1324 fontStream->insertInt("Length3", trailer); in addFontDescriptor()
/external/skia/src/pdf/
DSkPDFFont.cpp224 const uint8_t* trailer = hexData + hexDataLen; in handleType1Stream() local
228 for (; hexData < trailer; hexData++) { in handleType1Stream()
1296 size_t trailer SK_INIT_TO_AVOID_WARNING; in addFontDescriptor()
1299 &trailer); in addFontDescriptor()
1308 fontStream->insertInt("Length3", trailer); in addFontDescriptor()

12