| /mirbsd/src/gnu/usr.bin/perl/t/op/ |
| D | hashassign.t | 32 my @temp = (key=>undef); 33 is ($comma{$temp[0]}, "value", 'is key present? (using LHS of =>)'); 35 @temp = %comma; 36 ok (eq_array (\@comma, \@temp), 'list from comma hash'); 38 @temp = each %comma; 39 ok (eq_array (\@comma, \@temp), 'first each from comma hash'); 40 @temp = each %comma; 41 ok (eq_array ([], \@temp), 'last each from comma hash'); 43 my %temp = %comma; 45 ok (keys %temp == 1, 'keys on copy of comma hash'); [all …]
|
| /mirbsd/src/gnu/usr.bin/lynx/WWW/Library/Implementation/ |
| D | HTList.c | 73 HTList *temp = start; in HTList_appendList() local 84 while (temp->next) in HTList_appendList() 85 temp = temp->next; in HTList_appendList() 87 temp->next = tail->next; in HTList_appendList() 155 HTList *temp = me; in HTList_appendObject() local 157 if (temp && newObject) { in HTList_appendObject() 158 while (temp->next) in HTList_appendObject() 159 temp = temp->next; in HTList_appendObject() 160 HTList_addObject(temp, newObject); in HTList_appendObject() 174 HTList *temp = me; in HTList_insertObjectAt() local [all …]
|
| D | HTRules.c | 87 rule *temp; in HTAddRule() local 90 temp = typecalloc(rule); in HTAddRule() 91 if (temp == NULL) in HTAddRule() 94 assert(temp != NULL); in HTAddRule() 100 temp->equiv = pEquiv; in HTAddRule() 102 temp->equiv = 0; in HTAddRule() 105 StrAllocCopy(temp->condition_op, cond_op); in HTAddRule() 106 StrAllocCopy(temp->condition, cond); in HTAddRule() 109 temp->pattern = pPattern; in HTAddRule() 110 temp->op = op; in HTAddRule() [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/makeinfo/ |
| D | float.c | 89 FLOAT_ELT *temp = float_stack; in count_floats_of_type_in_chapter() local 91 while (temp && strncmp (temp->number, chapter, l) == 0) in count_floats_of_type_in_chapter() 93 if (strlen (temp->id) > 0 && STREQ (text_expansion (temp->type), type)) in count_floats_of_type_in_chapter() 95 temp = temp->next; in count_floats_of_type_in_chapter() 140 FLOAT_ELT *temp = float_stack; in get_float_ref() local 142 while (temp) in get_float_ref() 144 if (STREQ (id, temp->id)) in get_float_ref() 146 char *s = xmalloc (strlen (temp->type) + strlen (temp->number) + 2); in get_float_ref() 147 sprintf (s, "%s %s", temp->type, temp->number); in get_float_ref() 150 temp = temp->next; in get_float_ref() [all …]
|
| D | sectioning.c | 182 char *temp; in what_section() local 207 temp = xmalloc (1 + j); in what_section() 208 strncpy (temp, text, j); in what_section() 209 temp[j] = 0; in what_section() 211 index = search_sectioning (temp); in what_section() 212 free (temp); in what_section() 322 char *temp, *secname; in sectioning_underscore() local 330 temp = xmalloc (2 + strlen (cmd)); in sectioning_underscore() 331 temp[0] = COMMAND_PREFIX; in sectioning_underscore() 332 strcpy (&temp[1], cmd); in sectioning_underscore() [all …]
|
| D | makeinfo.c | 962 char *temp = xmalloc (strlen (string) + 1); in fix_whitespace() local 971 c = temp[temp_index++] = string[string_index++]; in fix_whitespace() 975 temp[temp_index - 1] = ' '; in fix_whitespace() 982 temp[temp_index] = 0; in fix_whitespace() 983 strcpy (string, temp); in fix_whitespace() 984 free (temp); in fix_whitespace() 992 int temp = search_forward (string, input_text_offset); in discard_until() local 994 int tt = (temp < 0) ? input_text_length : temp + strlen (string); in discard_until() 1002 if (temp < 0) in discard_until() 1023 input_text_offset = temp + strlen (string); in discard_until() [all …]
|
| D | files.c | 381 char *temp = strrchr (basename, '.'); in filename_part() local 382 if (temp) in filename_part() 383 *temp = 0; in filename_part() 682 DELAYED_WRITE *temp = (DELAYED_WRITE *) reverse_list in handle_delayed_writes() local 689 while (temp) in handle_delayed_writes() 691 delayed_buf = find_and_load (temp->filename, 0); in handle_delayed_writes() 701 fs_error (temp->filename); in handle_delayed_writes() 705 output_stream = fopen (temp->filename, "w"); in handle_delayed_writes() 708 fs_error (temp->filename); in handle_delayed_writes() 712 if (fwrite (delayed_buf, 1, temp->position, output_stream) != temp->position) in handle_delayed_writes() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ |
| D | Env.pm | 135 my @temp = split($sep, $ENV{$$self}); 136 return scalar(@temp); 141 my @temp = split($sep, $ENV{$$self}); 142 $#temp = $size - 1; 143 $ENV{$$self} = join($sep, @temp); 158 my @temp = split($sep, $ENV{$$self}); 159 $temp[$index] = $value; 160 $ENV{$$self} = join($sep, @temp); 166 my @temp = split($sep, $ENV{$$self}); 167 push @temp, @_; [all …]
|
| /mirbsd/src/gnu/usr.bin/lynx/src/ |
| D | LYmktime.c | 82 char temp[8]; in LYmktime() 109 LYStrNCpy(temp, start, (s - start)); in LYmktime() 110 day = atoi(temp); in LYmktime() 128 LYStrNCpy(temp, start, (isdigit(UCH(*(s - 1))) ? 2 : 3)); in LYmktime() 129 switch (TOUPPER(temp[0])) { in LYmktime() 132 month = atoi(temp); in LYmktime() 138 if (!strcasecomp(temp, "Apr")) { in LYmktime() 140 } else if (!strcasecomp(temp, "Aug")) { in LYmktime() 147 if (!strcasecomp(temp, "Dec")) { in LYmktime() 154 if (!strcasecomp(temp, "Feb")) { in LYmktime() [all …]
|
| D | LYShowInfo.c | 62 static char temp[LYNX_DATE_LEN + 1]; in LYVersionDate() local 64 LYStrNCpy(temp, &LYNX_DATE[LYNX_DATE_OFF], LYNX_DATE_LEN); in LYVersionDate() 65 return temp; in LYVersionDate() 123 char *temp = 0; in LYShowInfo() local 179 temp = HTfullURL_toFile(doc->address); in LYShowInfo() 180 ADD_SS(gettext("Name:"), temp); in LYShowInfo() 181 FREE(temp); in LYShowInfo() 187 temp = HTfullURL_toFile(links[doc->link].lname); in LYShowInfo() 189 if (lstat(temp, &dir_info) == -1) { in LYShowInfo() 190 CTRACE((tfp, "lstat(%s) failed, errno=%d\n", temp, errno)); in LYShowInfo() [all …]
|
| /mirbsd/src/gnu/usr.bin/cvs/src/ |
| D | mkmodules.c | 24 static int checkout_file (char *file, char *temp); 26 static void rename_rcsfile (char *temp, char *real); 29 static void rename_dbmfile (char *temp); 30 static void write_dbmfile (char *temp); 695 char *temp; in mkmodules() local 717 temp = make_tempfile (); in mkmodules() 718 switch (checkout_file (CVSROOTADM_MODULES, temp)) in mkmodules() 724 if ((db = dbm_open (temp, O_RDONLY, 0666)) != NULL) in mkmodules() 727 write_dbmfile (temp); in mkmodules() 728 rename_dbmfile (temp); in mkmodules() [all …]
|
| D | wrapper.c | 78 void wrap_add_entry (WrapperEntry *e,int temp); 258 wrap_add_file (const char *file, int temp) in wrap_add_file() argument 276 wrap_add (line, temp); in wrap_add_file() 343 char *temp; in wrap_add() local 362 for (temp = line; in wrap_add() 366 if(temp==line) in wrap_add() 372 e.wildCard=xstrdup(temp); in wrap_add() 391 for(temp=++line;*line && (*line!='\'' || line[-1]=='\\');++line) in wrap_add() 402 if (line==temp) in wrap_add() 420 expand_path (temp, current_parsed_root->directory, false, in wrap_add() [all …]
|
| /mirbsd/src/gnu/usr.bin/texinfo/info/ |
| D | filesys.c | 86 char *temp; in info_find_fullpath() local 105 temp = info_absolute_file (partial); in info_find_fullpath() 111 temp = info_absolute_file (expansion); in info_find_fullpath() 115 temp = expansion; in info_find_fullpath() 136 temp = info_absolute_file (local_temp_filename); /* try extensions */ in info_find_fullpath() 137 if (!temp) in info_find_fullpath() 141 temp = info_file_in_path (partial, infopath); in info_find_fullpath() 143 if (temp) in info_find_fullpath() 145 remember_info_filename (partial, temp); in info_find_fullpath() 146 if (strlen (temp) > (unsigned int) local_temp_filename_size) in info_find_fullpath() [all …]
|
| /mirbsd/src/lib/libm/src/ |
| D | e_jn.c | 59 double a, b, temp, di; in __ieee754_jn() local 62 temp = 0; in __ieee754_jn() 98 case 0: temp = cos(x)+sin(x); break; in __ieee754_jn() 99 case 1: temp = -cos(x)+sin(x); break; in __ieee754_jn() 100 case 2: temp = -cos(x)-sin(x); break; in __ieee754_jn() 101 case 3: temp = cos(x)-sin(x); break; in __ieee754_jn() 103 b = invsqrtpi*temp/sqrt(x); in __ieee754_jn() 108 temp = b; in __ieee754_jn() 110 a = temp; in __ieee754_jn() 121 temp = x*0.5; b = temp; in __ieee754_jn() [all …]
|
| D | e_jnf.c | 38 float a, b, temp, di; in __ieee754_jnf() local 64 temp = b; in __ieee754_jnf() 66 a = temp; in __ieee754_jnf() 76 temp = x*(float)0.5; b = temp; in __ieee754_jnf() 79 b *= temp; /* b = (x/2)^n */ in __ieee754_jnf() 140 temp = b; in __ieee754_jnf() 143 a = temp; in __ieee754_jnf() 148 temp = b; in __ieee754_jnf() 151 a = temp; in __ieee754_jnf() 177 float a, b, temp; in __ieee754_ynf() local [all …]
|
| /mirbsd/src/sys/dev/ic/ |
| D | smc93cx6.c | 104 u_int32_t temp; local 112 temp = sd->sd_MS ^ sd->sd_CS; 113 SEEPROM_OUTB(sd, temp ^ sd->sd_CK); 122 temp ^= sd->sd_DO; 123 SEEPROM_OUTB(sd, temp); 125 SEEPROM_OUTB(sd, temp ^ sd->sd_CK); 128 temp ^= sd->sd_DO; 133 temp ^= sd->sd_DO; 134 SEEPROM_OUTB(sd, temp); 136 SEEPROM_OUTB(sd, temp ^ sd->sd_CK); [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | jv-lang.c | 210 struct value *temp = name; in get_java_utf8_name() local 213 temp = value_struct_elt (&temp, NULL, "length", NULL, "structure"); in get_java_utf8_name() 214 name_length = (int) value_as_long (temp); in get_java_utf8_name() 215 data_addr = VALUE_ADDRESS (temp) + value_offset (temp) in get_java_utf8_name() 216 + TYPE_LENGTH (value_type (temp)); in get_java_utf8_name() 255 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() [all …]
|
| /mirbsd/src/usr.sbin/makefs/ |
| D | cd9660.c | 189 cd9660node *temp; in cd9660_allocate_cd9660node() local 191 if ((temp = calloc(1, sizeof(cd9660node))) == NULL) in cd9660_allocate_cd9660node() 193 TAILQ_INIT(&temp->cn_children); in cd9660_allocate_cd9660node() 194 temp->parent = temp->dot_record = temp->dot_dot_record = NULL; in cd9660_allocate_cd9660node() 195 temp->ptnext = temp->ptprev = temp->ptlast = NULL; in cd9660_allocate_cd9660node() 196 temp->node = NULL; in cd9660_allocate_cd9660node() 197 temp->isoDirRecord = NULL; in cd9660_allocate_cd9660node() 198 temp->isoExtAttributes = NULL; in cd9660_allocate_cd9660node() 199 temp->rr_real_parent = temp->rr_relocated = NULL; in cd9660_allocate_cd9660node() 200 temp->su_tail_data = NULL; in cd9660_allocate_cd9660node() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | nlm32-i386.c | 74 bfd_byte temp[4]; in nlm_i386_read_reloc() local 78 if (bfd_bread (temp, (bfd_size_type) sizeof (temp), abfd) != sizeof (temp)) in nlm_i386_read_reloc() 81 val = bfd_get_32 (abfd, temp); in nlm_i386_read_reloc() 147 bfd_byte temp[4]; in nlm_i386_write_import() local 216 bfd_put_32 (abfd, val, temp); in nlm_i386_write_import() 217 if (bfd_bwrite (temp, (bfd_size_type) sizeof (temp), abfd) != sizeof (temp)) in nlm_i386_write_import() 333 bfd_byte temp[NLM_TARGET_LONG_SIZE]; /* Temporary 32-bit value. */ in nlm_i386_read_import() local 351 if (bfd_bread (temp, (bfd_size_type) sizeof (temp), abfd) != sizeof (temp)) in nlm_i386_read_import() 353 rcount = H_GET_32 (abfd, temp); in nlm_i386_read_import() 382 unsigned char temp[NLM_TARGET_LONG_SIZE]; in nlm_i386_write_external() local [all …]
|
| /mirbsd/src/usr.bin/yacc/ |
| D | mkpar.c | 100 action *actions, *temp; in get_shifts() local 117 temp = NEW(action); in get_shifts() 118 temp->next = actions; in get_shifts() 119 temp->symbol = symbol; in get_shifts() 120 temp->number = k; in get_shifts() 121 temp->prec = symbol_prec[symbol]; in get_shifts() 122 temp->action_code = SHIFT; in get_shifts() 123 temp->assoc = symbol_assoc[symbol]; in get_shifts() 124 actions = temp; in get_shifts() 158 action *temp, *prev, *next; in add_reduce() local [all …]
|
| /mirbsd/src/sys/dev/raidframe/ |
| D | rf_pqdeg.c | 96 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 98 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 100 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 141 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 143 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 145 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 160 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 162 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 164 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 196 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local [all …]
|
| D | rf_evenodd_dags.c | 82 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 84 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 86 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 143 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 145 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 147 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 158 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local 160 temp = asmap->parityInfo; in RF_CREATE_DAG_FUNC_DECL() 162 asmap->qInfo = temp; in RF_CREATE_DAG_FUNC_DECL() 175 RF_PhysDiskAddr_t *temp; in RF_CREATE_DAG_FUNC_DECL() local [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/include/ |
| D | obstack.h | 171 PTR_INT_TYPE temp; /* Temporary for some macros. */ member 463 ( (h)->temp = (length), \ 464 (((h)->next_free + (h)->temp > (h)->chunk_limit) \ 465 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0)) 468 ( (h)->temp = (length), \ 469 (((h)->next_free + (h)->temp > (h)->chunk_limit) \ 470 ? (_obstack_newchunk ((h), (h)->temp), 0) : 0), \ 471 _obstack_memcpy ((h)->next_free, (where), (h)->temp), \ 472 (h)->next_free += (h)->temp) 475 ( (h)->temp = (length), \ [all …]
|
| /mirbsd/src/sbin/isakmpd/ |
| D | math_ec2n.c | 99 b2n_t temp; in ec2np_right() local 101 b2n_init(temp); in ec2np_right() 109 if (b2n_mul(temp, g->a, n)) /* a*x**2 */ in ec2np_right() 111 if (b2n_mod(temp, temp, g->p)) in ec2np_right() 119 if (b2n_add(n, n, temp)) in ec2np_right() 124 b2n_clear(temp); in ec2np_right() 128 b2n_clear(temp); in ec2np_right() 136 b2n_t x, y, temp; in ec2np_ison() local 143 b2n_init(temp); in ec2np_ison() 155 if (b2n_mul(temp, p->y, p->x)) in ec2np_ison() [all …]
|
| /mirbsd/src/lib/libncurses/src/ncurses/widechar/ |
| D | charable.c | 54 char temp[MB_LEN_MAX]; in _nc_to_char() local 55 result = wctomb(temp, ch); in _nc_to_char() 56 if (strlen(temp) == 1) in _nc_to_char() 57 result = UChar(temp[0]); in _nc_to_char() 71 char temp[2]; in _nc_to_widechar() local 72 temp[0] = ch; in _nc_to_widechar() 73 temp[1] = '\0'; in _nc_to_widechar() 74 if (mbtowc(&convert, temp, 1) >= 0) in _nc_to_widechar()
|