Searched refs:temp (Results 1 - 25 of 124) sorted by relevance

12345

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dhashassign.t32 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
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/lib/
H A DLzHash.h41 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
42 hash2Value = temp & (kHash2Size - 1); \
43 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
46 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
47 hash2Value = temp & (kHash2Size - 1); \
48 hash3Value = (temp ^ ((UInt32)cur[2] << 8)) & (kHash3Size - 1); \
49 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
52 UInt32 temp = p->crc[cur[0]] ^ cur[1]; \
53 hash2Value = temp & (kHash2Size - 1); \
54 hash3Value = (temp
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Drijndael.c323 byte temp[4][4];
326 *((u32*)u.temp[0]) = *((u32*)(a )) ^ *((u32*)rk[0][0]);
327 *((u32*)u.temp[1]) = *((u32*)(a+ 4)) ^ *((u32*)rk[0][1]);
328 *((u32*)u.temp[2]) = *((u32*)(a+ 8)) ^ *((u32*)rk[0][2]);
329 *((u32*)u.temp[3]) = *((u32*)(a+12)) ^ *((u32*)rk[0][3]);
330 *((u32*)(b )) = (*((u32*)T1[u.temp[0][0]])
331 ^ *((u32*)T2[u.temp[1][1]])
332 ^ *((u32*)T3[u.temp[2][2]])
333 ^ *((u32*)T4[u.temp[3][3]]));
334 *((u32*)(b + 4)) = (*((u32*)T1[u.temp[
322 byte temp[4][4]; member in union:__anon574
512 byte temp[4][4]; member in union:__anon577
[all...]
/osnet-11/usr/src/lib/libnsl/rpc/
H A Drpcdname.c55 char temp[256]; local
65 if (getdomainname(temp, (size_t)sizeof (temp)) < 0) {
69 if ((int)strlen(temp) > 0) {
70 default_domain = strdup(temp);
/osnet-11/usr/src/lib/libcurses/screen/
H A Dwcstombs.c45 char temp[MB_LEN_MAX]; local
53 if ((val = _curs_wctomb(temp, *pwcs++)) == -1)
60 *s++ = temp[i];
/osnet-11/usr/src/lib/libfdisk/common/
H A Dlibfdisk.c154 ext_part_t *temp; local
159 if ((temp = calloc(1, sizeof (ext_part_t))) == NULL) {
164 bzero(temp, sizeof (ext_part_t));
166 (void) strncpy(temp->device_name, devstr,
167 sizeof (temp->device_name));
170 if (stat(temp->device_name, &sbuf) != 0) {
173 (void) snprintf(temp->device_name, sizeof (temp->device_name),
176 if (stat(temp->device_name, &sbuf) != 0) {
183 if (strrchr(temp
366 logical_drive_t *temp = fdisk_get_ld_head(epp); local
392 logical_drive_t *temp = fdisk_get_ld_head(epp); local
413 logical_drive_t *temp = fdisk_get_ld_head(epp); local
439 logical_drive_t *temp; local
454 logical_drive_t *temp; local
471 logical_drive_t *temp; local
531 logical_drive_t *temp; local
596 logical_drive_t *temp; local
670 logical_drive_t *temp, *ep_ptr; local
867 logical_drive_t *temp; local
902 logical_drive_t *temp; local
1024 logical_drive_t *temp, *pre, *cur; local
1319 logical_drive_t *temp; local
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dswab.c37 #define STEP (void)((temp = *from++), (*to++ = *from++), (*to++ = temp))
42 char temp; local
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DEnv.pm135 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...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Drijndael.c323 byte temp[4][4];
326 *((u32*)u.temp[0]) = *((u32*)(a )) ^ *((u32*)rk[0][0]);
327 *((u32*)u.temp[1]) = *((u32*)(a+ 4)) ^ *((u32*)rk[0][1]);
328 *((u32*)u.temp[2]) = *((u32*)(a+ 8)) ^ *((u32*)rk[0][2]);
329 *((u32*)u.temp[3]) = *((u32*)(a+12)) ^ *((u32*)rk[0][3]);
330 *((u32*)(b )) = (*((u32*)T1[u.temp[0][0]])
331 ^ *((u32*)T2[u.temp[1][1]])
332 ^ *((u32*)T3[u.temp[2][2]])
333 ^ *((u32*)T4[u.temp[3][3]]));
334 *((u32*)(b + 4)) = (*((u32*)T1[u.temp[
322 byte temp[4][4]; member in union:__anon529
582 byte temp[4][4]; member in union:__anon532
727 unsigned char temp; local
[all...]
/osnet-11/usr/src/lib/libprtdiag/common/
H A Dlibdevinfo_sun4u.c202 Prop *temp; /* newly allocated property */ local
279 if ((temp = (Prop *) malloc(sizeof (Prop))) == NULL) {
287 * di_data will be via temp->name.val_ptr and
288 * temp->value.val_ptr respectively. However, this may
290 * temp->name.opp and temp->value.opp.
294 * temp->name.opp.oprom_array to temp->name.val_ptr.
298 * We thus set temp->value.opp.oprom_node[] (although
304 * temp
[all...]
H A Dprom.c65 char *temp; local
82 temp = vers + strlen(vers) + 1;
83 log_printf("%s", temp, 0);
H A Dpdevinfo_funcs.c118 StaticProp *temp; local
127 if ((temp = malloc(sizeof (StaticProp))) == NULL) {
147 temp->name.opp.oprom_size = opp->oprom_size;
148 (void) strcpy(temp->name.opp.oprom_array,
151 (void) strcpy(temp->value.opp.oprom_array,
152 temp->name.opp.oprom_array);
153 getpropval(&temp->value.opp);
154 temp->size = temp->value.opp.oprom_size;
156 /* Now copy over temp'
376 Board_node *temp = root->bd_list; local
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/des/
H A Dstring2key.c60 register unsigned temp; local
124 temp = (unsigned int) *str++;
127 fprintf(stdout,"%02x ",temp & 0xff);
132 *p_char++ ^= (int) temp & 01;
134 *--p_char ^= (int) temp & 01;
135 temp = temp >> 1;
148 temp = 0;
150 temp |= *p_char++ << (1+j);
151 *k_p++ = (unsigned char) temp;
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A DAFSplitter.c41 grub_uint8_t temp[sizeof (IV) + hash->mdlen]; local
49 grub_memcpy (temp, &IV, sizeof (IV));
50 grub_memcpy (temp + sizeof (IV), src + hash->mdlen * i, hash->mdlen);
51 grub_crypto_hash (hash, dst + hash->mdlen * i, temp,
58 grub_memcpy (temp, &IV, sizeof (IV));
59 grub_memcpy (temp + sizeof (IV), src + hash->mdlen * i, padding);
60 grub_crypto_hash (hash, final, temp, sizeof (IV) + padding);
/osnet-11/usr/src/lib/libadm/common/
H A Dpkginfo.c192 char temp[PATH_MAX]; local
204 *temp = '\0';
206 while (value = fpkgparam(fp, temp)) {
207 if (strcmp(temp, "ARCH") == 0 ||
208 strcmp(temp, "CATEGORY") == 0) {
220 if (strcmp(temp, "NAME") == 0)
222 else if (strcmp(temp, "VERSION") == 0)
224 else if (strcmp(temp, "ARCH") == 0)
226 else if (strcmp(temp, "VENDOR") == 0)
228 else if (strcmp(temp, "BASEDI
277 char temp[PKGSIZ+1]; local
505 char temp[PATH_MAX]; local
551 char temp[128]; local
[all...]
H A Dckint.c96 temp[64]; local
99 setprmpt(temp, base);
100 prompt = temp;
H A Dckyorn.c56 temp[TMPSIZ+1]; local
58 for (pt = temp, i = 0; *str && i < TMPSIZ; i++) {
63 if (strcmp(temp, vchoices[i++]) == 0)
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_stream.c163 } temp; member in struct:xz_dec
174 * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller
175 * must have set s->temp.pos to indicate how much data we are supposed
176 * to copy into s->temp.buf. Return true once s->temp.pos has reached
177 * s->temp.size.
182 b->in_size - b->in_pos, s->temp.size - s->temp.pos);
184 memcpy(s->temp.buf + s->temp
[all...]
H A Dxz_dec_bcj.c82 } temp; member in struct:xz_dec_bcj
405 * Flush pending filtered data from temp to the output buffer.
407 * data to the beginning of temp.
413 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
414 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
417 s->temp.filtered -= copy_size;
418 s->temp.size -= copy_size;
419 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp
[all...]
/osnet-11/usr/src/lib/libc/port/stdio/
H A Dsetbuf.c49 Uchar *temp; local
80 temp = buf + PUSHBACK;
81 iop->_base = temp;
82 _setbufend(iop, temp + size);
83 iop->_ptr = temp;
H A Dsetvbuf.c47 Uchar *temp; local
106 temp = buf + PUSHBACK;
107 iop->_base = temp;
108 _setbufend(iop, temp + size);
109 iop->_ptr = temp;
/osnet-11/usr/src/lib/libast/common/comp/
H A Dmktemp.c44 temp(char* buf, int* fdp) function
76 return temp(buf, NiL);
84 return *temp(buf, &fd) ? fd : -1;
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dptrmove.c84 void *temp; local
89 temp = *a_ptr;
91 *b_ptr-- = temp;
/osnet-11/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dutility.c80 DL_NODE *temp = dlist_get_last(list); local
81 temp->next = node;
82 node->prev = temp;
109 DL_NODE *temp = list; local
113 while (temp->prev != NULL)
114 temp = temp->prev;
116 return (temp);
126 DL_NODE *temp = list; local
130 while (temp
141 DL_NODE *temp = list; local
197 DL_NODE *temp = list; local
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dptrmove.c90 register void *temp; local
95 temp = *a_ptr;
97 *b_ptr-- = temp;

Completed in 51 milliseconds

12345