Searched refs:temp (Results 401 - 425 of 744) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/lib/libusb/
H A Dlibusb01.c589 uint32_t temp; local
611 temp = size;
612 if (temp > maxsize) {
614 temp = maxsize;
617 libusb20_tr_setup_intr(xfer, bytes, temp, timeout);
619 libusb20_tr_setup_bulk(xfer, bytes, temp, timeout);
653 if (actlen != temp) {
/freebsd-11-stable/sys/dev/sound/isa/
H A Dsb16.c336 int temp; local
338 temp = ((x * max) + 50) / 100;
339 if (temp > max)
340 temp = max;
341 else if (temp < 0)
342 temp = 0;
343 return (temp);
/freebsd-11-stable/usr.bin/rpcgen/
H A Drpc_main.c366 char *temp; local
367 temp = extendfile(file, ext);
369 if (access(temp, F_OK) != -1)
370 return (temp);
782 char *temp, *mkftemp; local
803 temp = strrchr(cmd->infile, '.');
806 (temp - cmd->infile));
/freebsd-11-stable/sys/dev/usb/input/
H A Dwmt.c555 uint32_t temp; local
569 temp = h.loc.pos + (h.loc.size * h.loc.count);
571 if (hpos < temp)
572 hpos = temp;
581 temp = 0;
583 temp = hpos - lpos;
586 return ((temp + 7) / 8 + report_id);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Dsvndiff.c406 apr_uint64_t temp = 0;
407 const unsigned char *result = svn__decode_uint(&temp, p, end);
408 *val = (svn_filesize_t)temp;
419 apr_uint64_t temp = 0;
420 const unsigned char *result = svn__decode_uint(&temp, p, end);
421 if (temp > APR_SIZE_MAX)
424 *val = (apr_size_t)temp;
405 apr_uint64_t temp = 0; local
418 apr_uint64_t temp = 0; local
/freebsd-11-stable/contrib/ipfilter/
H A Dip_dstlist.c657 frdest_t frd, *temp; local
674 size = sizeof(*temp) + frd.fd_name;
675 KMALLOCS(temp, frdest_t *, size);
676 if (temp == NULL) {
682 err = COPYIN(op->iplo_struct, temp, size);
698 KFREES(temp, size);
703 KFREES(temp, size);
/freebsd-11-stable/contrib/dialog/
H A Dui_getc.c307 char temp[80]; local
308 sprintf(temp, "%d", last_getc);
309 dlg_add_string(temp);
/freebsd-11-stable/contrib/binutils/gas/
H A Dstabs.c456 int temp; local
473 temp = get_absolute_expression ();
477 S_SET_DESC (symbolP, temp);
/freebsd-11-stable/sys/dev/drm2/i915/
H A Dintel_opregion.c359 u32 temp; local
440 temp = ioread32(&opregion->acpi->didl[i]);
441 iowrite32(temp | (1<<31) | output_type | i,
/freebsd-11-stable/libexec/ypxfr/
H A Dypxfr_main.c67 ypxfr_exit(ypxfrstat retval, char *temp) argument
74 if (temp != NULL) {
77 if (unlink(temp) == -1) {
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dpack.c187 /* temp file receiving all change list items (referenced by CHANGES).
195 /* temp file receiving all file prop items (referenced by FILE_PROPS).
203 /* temp file receiving all directory prop items (referenced by DIR_PROPS).
229 /* temp file receiving all items referenced by REPS.
267 /* where we will place our various temp files */
280 /* the pool used for temp structures */
309 /* item buckets: one item info array and one temp file per bucket */
620 /* copy the whole rep (including header!) to our temp file */
752 /* copy the noderev to our temp file */
881 path_order_t **temp,
879 sort_reps_range(pack_context_t *context, path_order_t **path_order, path_order_t **temp, int first, int last) argument
1014 path_order_t **temp, **path_order; local
1577 apr_size_t temp = max_mem / PER_ITEM_MEM; local
[all...]
/freebsd-11-stable/sys/powerpc/aim/
H A Daim_machdep.c475 uint32_t temp; local
507 temp = *memp;
518 temp = *memp;
/freebsd-11-stable/sys/netgraph/
H A Dng_vlan_rotate.c350 struct ether_vlan_stack_entry temp; local
355 temp = arr[i];
368 arr[j] = temp;
/freebsd-11-stable/sbin/ifconfig/
H A Difieee80211.c1043 char *temp, *cp, *tp; local
1045 temp = malloc(strlen(val) + 1);
1046 if (temp == NULL)
1048 strcpy(temp, val);
1050 cp = temp;
1088 free(temp);
1096 char *temp; local
1099 temp = malloc(strlen(val) + 2); /* ':' and '\0' */
1100 if (temp == NULL)
1102 temp[
1222 char *temp; local
1253 char *temp; local
1283 char *temp; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dfunction.c530 cut_slot_from_list (struct temp_slot *temp, struct temp_slot **list)
532 if (temp->next)
533 temp->next->prev = temp->prev;
534 if (temp->prev)
535 temp->prev->next = temp->next;
537 *list = temp->next;
539 temp->prev = temp
525 cut_slot_from_list(struct temp_slot *temp, struct temp_slot **list) argument
540 insert_slot_to_list(struct temp_slot *temp, struct temp_slot **list) argument
582 move_slot_to_level(struct temp_slot *temp, int level) argument
592 make_slot_available(struct temp_slot *temp) argument
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c114 SCREEN *temp; local
117 for (each_screen(temp)) {
118 if (temp == sp) {
126 last = temp;
/freebsd-11-stable/contrib/libreadline/
H A Dreadline.c384 char *temp; local
393 temp = savestring (the_line);
398 strcpy (the_line, temp);
399 free (temp);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dobjfiles.c483 struct objfile *objfile, *temp; local
485 ALL_OBJFILES_SAFE (objfile, temp)
725 struct objfile *temp;
727 ALL_OBJFILES_SAFE (objf, temp)
723 struct objfile *temp; local
/freebsd-11-stable/contrib/less/
H A Dregexp.c660 register char *temp; local
669 temp = regnext(scan);
670 if (temp == NULL)
672 scan = temp;
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-sparc.c3761 int temp;
3834 temp = mylog2 (align);
3835 if (temp < 0)
3842 align = temp;
3904 offsetT temp, size;
3923 if ((temp = get_absolute_expression ()) < 0)
3926 (unsigned long) temp);
3930 size = temp;
3966 temp = get_absolute_expression ();
3969 if (temp > max_alignmen
3748 int temp; local
3891 offsetT temp, size; local
[all...]
/freebsd-11-stable/lib/libcuse/
H A Dcuse_lib.c265 struct cuse_vm_allocation temp; local
278 temp = a_cuse[n];
282 munmap(temp.ptr, temp.size);
/freebsd-11-stable/sys/dev/iicbus/
H A Dadt746x.c545 int8_t temp; local
550 &temp) < 0)
553 tmp = 10 * temp + ZERO_C_TO_K;
555 tmp = temp;
637 unit = "temp";
/freebsd-11-stable/sys/isa/
H A Dpnpparse.c67 int temp; local
252 temp = I16(res + 7) << 8;
257 (I16(res + 3) << 8) + temp - 1,
258 temp, I16(res + 5));
/freebsd-11-stable/sys/powerpc/include/
H A Datomic.h449 u_int result,temp; local
458 : "=&r"(result), "=&r"(temp), "=m" (*addr)
470 u_long result,temp; local
479 : "=&r"(result), "=&r"(temp), "=m" (*addr)
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldebug.c50 StkId temp = ci->func; /* exchange its 'func' and 'extra' values */ local
52 ci->extra = savestack(L, temp);
554 TValue temp; local
555 if (luaV_tonumber(p1, &temp) == NULL)

Completed in 239 milliseconds

<<11121314151617181920>>