HomeSort by: relevance | last modified time | path
    Searched defs:trailer (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/lib/libc/sys/
makelintstub 187 trailer() function
247 trailer
  /src/external/bsd/byacc/dist/
btyaccpar.c 1019 const char *const trailer[] = variable
yaccpar.c 359 const char *const trailer[] = variable
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
digest.c 240 uint8_t trailer[6]; local
245 trailer[0] = V4_SIGNATURE;
246 trailer[1] = 0xFF;
247 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff);
248 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff);
249 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff);
250 trailer[5] = (uint8_t)(hashedlen & 0xff);
251 digest_update(hash, trailer, sizeof(trailer));
pgpsum.c 132 uint8_t trailer[6]; local
140 trailer[0] = 0x04;
141 trailer[1] = 0xff;
142 memcpy(&trailer[2], &len32, sizeof(len32));
156 digest_update(&hash, trailer, sizeof(trailer));
  /src/external/gpl3/gcc/dist/gcc/
gimple-range-trace.cc 104 range_tracer::trailer (unsigned counter, const char *caller, bool result, function in class:range_tracer
  /src/crypto/external/bsd/netpgp/dist/src/libverify/
pgpsum.c 116 uint8_t trailer[6]; local
124 trailer[0] = 0x04;
125 trailer[1] = 0xff;
126 memcpy(&trailer[2], &len32, sizeof(len32));
140 digest_update(&hash, trailer, sizeof(trailer));
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-range-trace.cc 104 range_tracer::trailer (unsigned counter, const char *caller, bool result, function in class:range_tracer
  /src/sys/dev/raidframe/
rf_cvscan.c 353 RF_DiskQueueData_t *trailer = NULL, *tmp = hdr->burner, *tlist = NULL; local
368 trailer = tmp;
373 trailer->next = tmp->next;
377 tmp = trailer->next;
379 trailer = tmp;
rf_map.c 534 RF_PhysDiskAddr_t *pdp, *trailer, *pdaList = NULL, *pdaEnd = NULL; local
545 for (trailer = NULL, pdp = p->qInfo; pdp;) {
546 trailer = pdp;
550 if (trailer)
551 pdaEnd = trailer;
557 for (trailer = NULL, pdp = p->parityInfo; pdp;) {
558 trailer = pdp;
562 if (trailer)
563 pdaEnd = trailer;
569 for (trailer = NULL, pdp = p->physInfo; pdp;)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/ntlm/
crypto.c 503 gss_buffer_desc trailer; local
519 &trailer);
524 if (trailer.length != 16) {
526 gss_release_buffer(&junk, &trailer);
531 trailer.value, trailer.length);
532 gss_release_buffer(&junk, &trailer);
576 gss_buffer_desc trailer; local
592 trailer.value = ((unsigned char *)input_message_buffer->value) +
594 trailer.length = 16
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/libdigest/
digest.c 347 uint8_t trailer[6]; local
352 trailer[0] = V4_SIGNATURE;
353 trailer[1] = 0xFF;
354 trailer[2] = (uint8_t)((hashedlen >> 24) & 0xff);
355 trailer[3] = (uint8_t)((hashedlen >> 16) & 0xff);
356 trailer[4] = (uint8_t)((hashedlen >> 8) & 0xff);
357 trailer[5] = (uint8_t)(hashedlen & 0xff);
358 digest_update(hash, trailer, sizeof(trailer));
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_add_filter_gzip.c 347 unsigned char trailer[8]; local
360 /* Build and write out 8-byte trailer. */
361 trailer[0] = (uint8_t)(data->crc)&0xff;
362 trailer[1] = (uint8_t)(data->crc >> 8)&0xff;
363 trailer[2] = (uint8_t)(data->crc >> 16)&0xff;
364 trailer[3] = (uint8_t)(data->crc >> 24)&0xff;
365 trailer[4] = (uint8_t)(data->total_in)&0xff;
366 trailer[5] = (uint8_t)(data->total_in >> 8)&0xff;
367 trailer[6] = (uint8_t)(data->total_in >> 16)&0xff;
368 trailer[7] = (uint8_t)(data->total_in >> 24)&0xff
    [all...]
archive_write_set_format_cpio_binary.c 577 struct archive_entry *trailer; local
579 trailer = archive_entry_new2(NULL);
580 if (trailer == NULL) {
584 archive_entry_set_nlink(trailer, 1);
585 archive_entry_set_size(trailer, 0);
586 archive_entry_set_pathname(trailer, "TRAILER!!!");
587 er = write_header(a, trailer);
588 archive_entry_free(trailer);
archive_write_set_format_cpio_newc.c 425 struct archive_entry *trailer; local
427 trailer = archive_entry_new();
428 archive_entry_set_nlink(trailer, 1);
429 archive_entry_set_size(trailer, 0);
430 archive_entry_set_pathname(trailer, "TRAILER!!!");
432 er = write_header(a, trailer);
433 archive_entry_free(trailer);
archive_write_set_format_cpio_odc.c 467 struct archive_entry *trailer; local
469 trailer = archive_entry_new2(NULL);
470 if (trailer == NULL) {
474 archive_entry_set_nlink(trailer, 1);
475 archive_entry_set_size(trailer, 0);
476 archive_entry_set_pathname(trailer, "TRAILER!!!");
477 er = write_header(a, trailer);
478 archive_entry_free(trailer);
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/
arcfour.c 925 gss_iov_buffer_desc *trailer = NULL; local
944 if (trailer != NULL) {
948 trailer = &iov[i];
971 padding, trailer, FALSE);
992 if (trailer) {
993 trailer->buffer.length = 0;
1014 gss_iov_buffer_desc *header, *padding, *trailer; local
1026 trailer = _gk_find_buffer(iov, iov_count, GSS_IOV_BUFFER_TYPE_TRAILER);
1029 padding, trailer, FALSE);
1094 if (trailer) {
1268 gss_iov_buffer_desc *header, *padding, *trailer; local
    [all...]
cfx.c 217 * This function is used to find header, padding or trailer buffers
269 const gss_iov_buffer_desc *trailer,
279 * In DCE style mode we reject having a padding or trailer buffer
285 if (trailer) {
316 gss_iov_buffer_desc *header, *trailer, *padding; local
338 trailer = _gk_find_buffer(iov, iov_count, GSS_IOV_BUFFER_TYPE_TRAILER);
341 padding, trailer, FALSE);
421 if (trailer == NULL) {
426 } else if (GSS_IOV_BUFFER_FLAGS(trailer->type) & GSS_IOV_BUFFER_FLAG_ALLOCATE) {
427 major_status = _gk_allocate_buffer(minor_status, trailer, gsstsize)
754 gss_iov_buffer_desc *header, *trailer, *padding; local
1060 gss_iov_buffer_desc *trailer = NULL; local
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/lib/
validate.c 172 + hash the trailer - 6 bytes
188 uint8_t trailer[6]; local
198 trailer[0] = sig->info.type;
199 trailer[1] = (unsigned)(sig->info.birthtime) >> 24;
200 trailer[2] = (unsigned)(sig->info.birthtime) >> 16;
201 trailer[3] = (unsigned)(sig->info.birthtime) >> 8;
202 trailer[4] = (uint8_t)(sig->info.birthtime);
203 hash.add(&hash, trailer, 5);
212 trailer[0] = 0x04; /* version */
213 trailer[1] = 0xFF
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/nat/
linux-procfs.c 289 const char *trailer; local
290 ULONGEST starttime = strtoulst (field->c_str (), &trailer, 10);
293 else if (*trailer != '\0')
  /src/external/gpl3/gdb/dist/gdb/nat/
linux-procfs.c 289 const char *trailer; local
290 ULONGEST starttime = strtoulst (field->c_str (), &trailer, 10);
293 else if (*trailer != '\0')
  /src/usr.bin/midirecord/
midirecord.c 818 unsigned char trailer[] = { local
822 if (write(outfd, trailer, sizeof trailer) != sizeof trailer)
823 err(1, "write of trailer failed");
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/
test_context.c 321 krb5_data token, header, trailer; local
338 trailer.data = trailer_data;
339 trailer.length = 10;
343 trailer.data = NULL;
344 trailer.length = 0;
368 if (trailer.length != 0) {
370 iov[3].buffer.length = trailer.length;
371 iov[3].buffer.value = trailer.data;
  /src/external/gpl2/diffutils/dist/lib/
alloca.c 320 include the fifteen word trailer area. */
333 this trailer). */
336 long link; /* Address of trailer block of previous
361 struct stk_trailer *trailer; local
374 trailer = (struct stk_trailer *) (status.current_address
379 a fatal error if "trailer" is null. */
381 if (trailer == 0)
386 while (trailer != 0)
388 block = (long *) trailer->this_address;
389 size = trailer->this_size
    [all...]
  /src/external/gpl2/gmake/dist/
alloca.c 317 include the fifteen word trailer area. */
330 this trailer). */
333 long link; /* Address of trailer block of previous
358 struct stk_trailer *trailer; local
371 trailer = (struct stk_trailer *) (status.current_address
376 a fatal error if "trailer" is null. */
378 if (trailer == 0)
383 while (trailer != 0)
385 block = (long *) trailer->this_address;
386 size = trailer->this_size
    [all...]

Completed in 32 milliseconds

1 2