Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 618) sorted by relevance

12345678910>>...25

/dflybsd-src/lib/libusb/
H A Dlibusb20_desc.c352 uint8_t temp; in libusb20_me_encode() local
357 temp = *((const uint8_t *) in libusb20_me_encode()
359 buf[0] = temp; in libusb20_me_encode()
370 uint16_t temp; in libusb20_me_encode() local
376 temp = *((const uint16_t *) in libusb20_me_encode()
378 buf[1] = (temp >> 8) & 0xFF; in libusb20_me_encode()
379 buf[0] = temp & 0xFF; in libusb20_me_encode()
390 uint32_t temp; in libusb20_me_encode() local
395 temp = *((const uint32_t *) in libusb20_me_encode()
397 buf[3] = (temp >> 24) & 0xFF; in libusb20_me_encode()
[all …]
H A Dlibusb20_ugen20.c108 uint32_t temp = 0; in ugen20_path_convert_one() local
113 temp *= 10; in ugen20_path_convert_one()
114 temp += (*ptr - '0'); in ugen20_path_convert_one()
115 if (temp >= 1000000) { in ugen20_path_convert_one()
128 return (temp); in ugen20_path_convert_one()
512 int temp; in ugen20_get_config_index() local
514 if (ioctl(pdev->file_ctrl, IOUSB(USB_GET_CONFIG), &temp)) { in ugen20_get_config_index()
517 *pindex = temp; in ugen20_get_config_index()
525 int temp = cfg_index; in ugen20_set_config_index() local
530 if (ioctl(pdev->file_ctrl, IOUSB(USB_SET_CONFIG), &temp)) { in ugen20_set_config_index()
[all …]
/dflybsd-src/sys/bus/u4b/controller/
H A Dxhci.c286 uint32_t temp; in xhci_reset_command_queue_locked() local
290 temp = XREAD4(sc, oper, XHCI_CRCR_LO); in xhci_reset_command_queue_locked()
291 if (temp & XHCI_CRCR_LO_CRR) { in xhci_reset_command_queue_locked()
293 temp &= ~(XHCI_CRCR_LO_CS | XHCI_CRCR_LO_CA); in xhci_reset_command_queue_locked()
302 XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CS); in xhci_reset_command_queue_locked()
305 XWRITE4(sc, oper, XHCI_CRCR_LO, temp | XHCI_CRCR_LO_CA); in xhci_reset_command_queue_locked()
312 temp = XREAD4(sc, oper, XHCI_CRCR_LO); in xhci_reset_command_queue_locked()
313 if (temp & XHCI_CRCR_LO_CRR) { in xhci_reset_command_queue_locked()
350 uint32_t temp; in xhci_start_controller() local
365 temp = (XREAD4(sc, oper, XHCI_USBCMD) & XHCI_CMD_HCRST) | in xhci_start_controller()
[all …]
/dflybsd-src/contrib/cvs-1.12/src/
H A Dmkmodules.c22 static int checkout_file (char *file, char *temp);
24 static void rename_rcsfile (char *temp, char *real);
27 static void rename_dbmfile (char *temp);
28 static void write_dbmfile (char *temp);
684 char *temp; in mkmodules() local
706 temp = make_tempfile (); in mkmodules()
707 switch (checkout_file (CVSROOTADM_MODULES, temp)) in mkmodules()
713 if ((db = dbm_open (temp, O_RDONLY, 0666)) != NULL) in mkmodules()
716 write_dbmfile (temp); in mkmodules()
717 rename_dbmfile (temp); in mkmodules()
[all …]
H A Dwrapper.c76 void wrap_add_entry (WrapperEntry *e,int temp);
249 wrap_add_file (const char *file, int temp) in wrap_add_file() argument
267 wrap_add (line, temp); in wrap_add_file()
334 char *temp; in wrap_add() local
347 for (temp = line; in wrap_add()
351 if(temp==line) in wrap_add()
357 e.wildCard=xstrdup(temp); in wrap_add()
376 for(temp=++line;*line && (*line!='\'' || line[-1]=='\\');++line) in wrap_add()
387 if (line==temp) in wrap_add()
405 expand_path (temp, current_parsed_root->directory, false, in wrap_add()
[all …]
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A Daes-internal.c782 u32 temp; in rijndaelKeySetupEnc() local
791 temp = rk[3]; in rijndaelKeySetupEnc()
792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc()
793 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc()
807 temp = rk[5]; in rijndaelKeySetupEnc()
808 rk[6] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc()
809 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc()
826 temp = rk[7]; in rijndaelKeySetupEnc()
827 rk[8] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc()
828 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc()
[all …]
/dflybsd-src/sys/bus/u4b/template/
H A Dusb_template.c118 usb_make_raw_desc(struct usb_temp_setup *temp, in usb_make_raw_desc() argument
129 if (temp->buf) { in usb_make_raw_desc()
130 dst = USB_ADD_BYTES(temp->buf, temp->size); in usb_make_raw_desc()
143 temp->bInterfaceNumber; in usb_make_raw_desc()
145 temp->bInterfaceNumber; in usb_make_raw_desc()
157 temp->bInterfaceNumber; in usb_make_raw_desc()
170 temp->bInterfaceNumber; in usb_make_raw_desc()
173 temp->size += len; in usb_make_raw_desc()
185 usb_make_endpoint_desc(struct usb_temp_setup *temp, in usb_make_endpoint_desc() argument
196 old_size = temp->size; in usb_make_endpoint_desc()
[all …]
/dflybsd-src/contrib/xz/src/liblzma/lz/
H A Dlz_encoder_hash.h50 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
51 const uint32_t hash_2_value = temp & HASH_2_MASK; \
53 = (temp ^ ((uint32_t)(cur[2]) << 8)) & mf->hash_mask
56 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
57 const uint32_t hash_2_value = temp & HASH_2_MASK; \
59 = (temp ^ ((uint32_t)(cur[2]) << 8)) & HASH_3_MASK; \
60 const uint32_t hash_value = (temp ^ ((uint32_t)(cur[2]) << 8) \
67 const uint32_t temp = hash_table[cur[0]] ^ cur[1]; \
68 const uint32_t hash_2_value = temp & HASH_2_MASK; \
70 = (temp ^ ((uint32_t)(cur[2]) << 8)) & HASH_3_MASK; \
[all …]
/dflybsd-src/contrib/gdb-7/readline/
H A Dhistexpand.c140 char *temp; local
236 temp = (char *)xmalloc (1 + which);
238 strncpy (temp, string + local_index, which);
239 temp[which] = '\0';
248 history_offset = history_length; xfree (temp) ; return (char *)NULL; \
253 if (*temp == '\0' && substring_okay)
257 xfree (temp);
258 temp = savestring (search_string);
267 local_index = (*search_func) (temp, -1);
282 search_string = temp;
[all …]
H A Dmisc.c338 HIST_ENTRY *temp; in rl_maybe_replace_line() local
340 temp = current_history (); in rl_maybe_replace_line()
342 if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list)) in rl_maybe_replace_line()
344 temp = replace_history_entry (where_history (), rl_line_buffer, (histdata_t)rl_undo_list); in rl_maybe_replace_line()
345 xfree (temp->line); in rl_maybe_replace_line()
346 FREE (temp->timestamp); in rl_maybe_replace_line()
347 xfree (temp); in rl_maybe_replace_line()
516 HIST_ENTRY *temp; local
530 temp = (HIST_ENTRY *)NULL;
533 temp = next_history ();
[all …]
/dflybsd-src/contrib/openbsd_libm/src/
H A De_jn.c53 double a, b, temp, di; in jn() local
91 case 0: temp = cos(x)+sin(x); break; in jn()
92 case 1: temp = -cos(x)+sin(x); break; in jn()
93 case 2: temp = -cos(x)-sin(x); break; in jn()
94 case 3: temp = cos(x)-sin(x); break; in jn()
96 b = invsqrtpi*temp/sqrt(x); in jn()
101 temp = b; in jn()
103 a = temp; in jn()
114 temp = x*0.5; b = temp; in jn()
117 b *= temp; /* b = (x/2)^n */ in jn()
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dfile-find.c36 char *temp; in find_a_file() local
47 temp = XNEWVEC (char, len); in find_a_file()
55 strcpy (temp, name); in find_a_file()
60 return temp; in find_a_file()
66 strcpy (temp, name); in find_a_file()
67 strcat (temp, HOST_EXECUTABLE_SUFFIX); in find_a_file()
69 if (access (temp, mode) == 0) in find_a_file()
70 return temp; in find_a_file()
81 strcpy (temp, pl->prefix); in find_a_file()
82 strcat (temp, name); in find_a_file()
[all …]
/dflybsd-src/contrib/libedit/src/
H A Dfilecomplete.c74 char *temp; in fn_tilde_expand() local
82 temp = strdup(txt + 1); in fn_tilde_expand()
83 if (temp == NULL) in fn_tilde_expand()
88 temp = el_calloc(len, sizeof(*temp)); in fn_tilde_expand()
89 if (temp == NULL) in fn_tilde_expand()
91 (void)strlcpy(temp, txt + 1, len - 1); in fn_tilde_expand()
93 if (temp[0] == 0) { in fn_tilde_expand()
105 if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0) in fn_tilde_expand()
108 pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand()
110 pass = getpwnam(temp); in fn_tilde_expand()
[all …]
/dflybsd-src/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_paprd.c831 int temp; in ar9300_paprd_debug_print() local
837 temp = in ar9300_paprd_debug_print()
841 "BB_paprd_trainer_cntl1.cf_paprd_lb_skip=0x%x\n", temp); in ar9300_paprd_debug_print()
843 temp = in ar9300_paprd_debug_print()
847 "BB_paprd_trainer_cntl1.cf_paprd_lb_enable=0x%x\n", temp); in ar9300_paprd_debug_print()
849 temp = in ar9300_paprd_debug_print()
853 "BB_paprd_trainer_cntl1.cf_paprd_tx_gain_force=0x%x\n", temp); in ar9300_paprd_debug_print()
858 temp = in ar9300_paprd_debug_print()
862 "BB_paprd_trainer_cntl1.cf_paprd_rx_bb_gain_force=0x%x\n", temp); in ar9300_paprd_debug_print()
864 temp = in ar9300_paprd_debug_print()
[all …]
/dflybsd-src/contrib/gcc-8.0/libgcc/config/i386/
H A Dsfp-exceptions.c61 struct fenv temp; in __sfp_handle_exceptions() local
62 asm volatile ("fnstenv\t%0" : "=m" (temp)); in __sfp_handle_exceptions()
63 temp.__status_word |= FP_EX_DENORM; in __sfp_handle_exceptions()
64 asm volatile ("fldenv\t%0" : : "m" (temp)); in __sfp_handle_exceptions()
81 struct fenv temp; in __sfp_handle_exceptions() local
82 asm volatile ("fnstenv\t%0" : "=m" (temp)); in __sfp_handle_exceptions()
83 temp.__status_word |= FP_EX_OVERFLOW; in __sfp_handle_exceptions()
84 asm volatile ("fldenv\t%0" : : "m" (temp)); in __sfp_handle_exceptions()
89 struct fenv temp; in __sfp_handle_exceptions() local
90 asm volatile ("fnstenv\t%0" : "=m" (temp)); in __sfp_handle_exceptions()
[all …]
/dflybsd-src/games/sail/
H A Ddr_2.c55 char *command, size_t commandmax, char *temp, size_t tempmax,
167 char temp[10]; in closeon() local
169 temp[0] = command[0] = '\0'; in closeon()
171 try(from, to, command, commandmax, temp, sizeof(temp), in closeon()
251 char *temp, size_t tempmax, in try() argument
258 if ((n = str_end(temp)) < '1' || n > '9') in try()
261 strlcat(temp, st, tempmax); in try()
262 new = score(f, t, temp, tempmax, rakeme); in try()
265 strlcpy(command, temp, commandmax); in try()
267 try(f, t, command, commandmax, temp, tempmax, in try()
[all …]
/dflybsd-src/contrib/gcc-4.7/libgcc/config/i386/64/
H A Dsfp-machine.h94 struct fenv temp; \
95 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
96 temp.__status_word |= FP_EX_DENORM; \
97 __asm__ __volatile__ ("fldenv %0" : : "m" (temp)); \
107 struct fenv temp; \
108 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
109 temp.__status_word |= FP_EX_OVERFLOW; \
110 __asm__ __volatile__ ("fldenv %0" : : "m" (temp)); \
115 struct fenv temp; \
116 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
[all …]
/dflybsd-src/usr.sbin/makefs/
H A Dcd9660.c176 cd9660node *temp = ecalloc(1, sizeof(*temp)); in cd9660_allocate_cd9660node() local
178 TAILQ_INIT(&temp->cn_children); in cd9660_allocate_cd9660node()
179 temp->parent = temp->dot_record = temp->dot_dot_record = NULL; in cd9660_allocate_cd9660node()
180 temp->ptnext = temp->ptprev = temp->ptlast = NULL; in cd9660_allocate_cd9660node()
181 temp->node = NULL; in cd9660_allocate_cd9660node()
182 temp->isoDirRecord = NULL; in cd9660_allocate_cd9660node()
183 temp->isoExtAttributes = NULL; in cd9660_allocate_cd9660node()
184 temp->rr_real_parent = temp->rr_relocated = NULL; in cd9660_allocate_cd9660node()
185 temp->su_tail_data = NULL; in cd9660_allocate_cd9660node()
186 return temp; in cd9660_allocate_cd9660node()
[all …]
/dflybsd-src/sys/dev/drm/amd/amdgpu/
H A Damdgpu_i2c.c44 uint32_t temp; in amdgpu_i2c_pre_xfer() local
50 temp = RREG32(rec->mask_clk_reg); in amdgpu_i2c_pre_xfer()
51 temp &= ~(1 << 16); in amdgpu_i2c_pre_xfer()
52 WREG32(rec->mask_clk_reg, temp); in amdgpu_i2c_pre_xfer()
56 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask; in amdgpu_i2c_pre_xfer()
57 WREG32(rec->a_clk_reg, temp); in amdgpu_i2c_pre_xfer()
59 temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask; in amdgpu_i2c_pre_xfer()
60 WREG32(rec->a_data_reg, temp); in amdgpu_i2c_pre_xfer()
63 temp = RREG32(rec->en_clk_reg) & ~rec->en_clk_mask; in amdgpu_i2c_pre_xfer()
64 WREG32(rec->en_clk_reg, temp); in amdgpu_i2c_pre_xfer()
[all …]
/dflybsd-src/contrib/gdb-7/gdb/
H A Djv-lang.c220 struct value *temp = name; in get_java_utf8_name() local
224 temp = value_struct_elt (&temp, NULL, "length", NULL, "structure"); in get_java_utf8_name()
225 name_length = (int) value_as_long (temp); in get_java_utf8_name()
226 data_addr = value_address (temp) + TYPE_LENGTH (value_type (temp)); in get_java_utf8_name()
267 struct value *temp; in type_from_class() local
287 temp = clas; in type_from_class()
288 sig = value_struct_elt (&temp, NULL, "method_count", NULL, "structure"); in type_from_class()
294 temp = clas; in type_from_class()
295 utf8_name = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in type_from_class()
320 temp = clas; in type_from_class()
[all …]
/dflybsd-src/usr.sbin/vidcontrol/
H A Ddecode.c42 char temp[128]; in decode() local
47 if (!fgets(temp, sizeof(temp), fd)) in decode()
49 } while (strncmp(temp, "begin ", 6)); in decode()
50 sscanf(temp, "begin %o %s", &n, temp); in decode()
53 if (!fgets(p = temp, sizeof(temp), fd)) in decode()
95 if (!fgets(temp, sizeof(temp), fd) || strcmp(temp, "end\n")) in decode()
/dflybsd-src/crypto/libressl/crypto/aes/
H A Daes_core.c632 u32 temp; in AES_set_encrypt_key() local
654 temp = rk[3]; in AES_set_encrypt_key()
656 (Te2[(temp >> 16) & 0xff] & 0xff000000) ^ in AES_set_encrypt_key()
657 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^ in AES_set_encrypt_key()
658 (Te0[(temp) & 0xff] & 0x0000ff00) ^ in AES_set_encrypt_key()
659 (Te1[(temp >> 24)] & 0x000000ff) ^ in AES_set_encrypt_key()
674 temp = rk[5]; in AES_set_encrypt_key()
676 (Te2[(temp >> 16) & 0xff] & 0xff000000) ^ in AES_set_encrypt_key()
677 (Te3[(temp >> 8) & 0xff] & 0x00ff0000) ^ in AES_set_encrypt_key()
678 (Te0[(temp) & 0xff] & 0x0000ff00) ^ in AES_set_encrypt_key()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dexplow.c331 rtx temp; in convert_memory_address_addr_space()
356 temp = simplify_unary_operation (code, to_mode, x, from_mode); in convert_memory_address_addr_space()
357 if (temp) in convert_memory_address_addr_space()
358 return temp; in convert_memory_address_addr_space()
368 temp = gen_rtx_LABEL_REF (to_mode, XEXP (x, 0)); in convert_memory_address_addr_space()
369 LABEL_REF_NONLOCAL_P (temp) = LABEL_REF_NONLOCAL_P (x); in convert_memory_address_addr_space()
370 return temp; in convert_memory_address_addr_space()
374 temp = shallow_copy_rtx (x); in convert_memory_address_addr_space()
375 PUT_MODE (temp, to_mode); in convert_memory_address_addr_space()
376 return temp; in convert_memory_address_addr_space()
[all …]
H A Dtree-ssa-dse.c85 gimple temp; in dse_possible_dead_store_p() local
94 temp = stmt; in dse_possible_dead_store_p()
107 if (gimple_code (temp) == GIMPLE_PHI) in dse_possible_dead_store_p()
108 defvar = PHI_RESULT (temp); in dse_possible_dead_store_p()
110 defvar = gimple_vdef (temp); in dse_possible_dead_store_p()
111 temp = NULL; in dse_possible_dead_store_p()
129 if (temp in dse_possible_dead_store_p()
142 temp = use_stmt; in dse_possible_dead_store_p()
155 if (temp) in dse_possible_dead_store_p()
160 temp = use_stmt; in dse_possible_dead_store_p()
[all …]
/dflybsd-src/contrib/gcc-4.7/libgcc/config/i386/32/
H A Dsfp-machine.h145 struct fenv temp; \
146 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
147 temp.__status_word |= FP_EX_DENORM; \
148 __asm__ __volatile__ ("fldenv %0" : : "m" (temp)); \
161 struct fenv temp; \
162 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
163 temp.__status_word |= FP_EX_OVERFLOW; \
164 __asm__ __volatile__ ("fldenv %0" : : "m" (temp)); \
169 struct fenv temp; \
170 __asm__ __volatile__ ("fnstenv %0" : "=m" (temp)); \
[all …]

12345678910>>...25