Searched refs:value (Results 1 - 25 of 2564) sorted by path

1234567891011>>

/illumos-gate/usr/src/boot/include/
H A Dmath.h164 /* Old value from 4.4BSD-Lite math.h; this is probably better. */
464 long double frexpl(long double value, int *); /* fundamentally !__pure2 */
/illumos-gate/usr/src/boot/lib/libstand/
H A Denvironment.c64 * If (value) is NULL, the variable is set but has no value.
67 env_setenv(const char *name, int flags, const void *value, argument
78 return (ev->ev_sethook(ev, flags, value));
129 /* If we have a new value, use it */
131 ev->ev_value = strdup(value);
134 ev->ev_value = (char *)value;
146 /* Set but no value gives empty string */
156 setenv(const char *name, const char *value, int overwrite) argument
160 return(env_setenv(name, EV_VOLATILE, value, NUL
167 char *value, *copy; local
[all...]
H A Dstand.h304 #define EV_DYNAMIC (1<<0) /* value was dynamically allocated, free if changed/unset */
305 #define EV_VOLATILE (1<<1) /* value is volatile, make a copy of it */
311 const void *value);
327 const void *value, ev_sethook_t sethook,
330 extern int setenv(const char *name, const char *value,
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.c162 * Update a hash value with the given input byte
464 int ZEXPORT deflatePrime (strm, bits, value)
467 int value;
480 s->bi_buf |= (ush)((value & ((1 << put) - 1)) << s->bi_valid);
483 value >>= put;
554 * value for 15 and 8 only works for those exact settings.
557 * the value returned is a conservative worst case for the maximum expansion
624 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
669 int old_flush; /* value of flush param for previous deflate call */
1446 * its value wil
[all...]
H A Dinflate.c230 int ZEXPORT inflatePrime(strm, bits, value)
233 int value;
245 value &= (1L << bits) - 1;
246 state->hold += value << state->bits;
586 update the check value, and determine whether any progress has been made
1225 Return from inflate(), updating the total counts and the check value.
1348 return value is how many bytes were read including the last byte of the
1350 yet and the return value is len. In the latter case, syncsearch() can be
H A Dtrees.c152 local unsigned bi_reverse OF((unsigned value, int length));
182 * Send a value on a given number of bits.
183 * IN assertion: length <= 16 and value fits in length bits.
186 local void send_bits OF((deflate_state *s, int value, int length));
188 local void send_bits(s, value, length)
190 int value; /* value to send */
193 Tracevv((stderr," l %2d v %4x ", length, value));
198 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
199 * unused bits in value
[all...]
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */
138 The opaque value provided by the application will be passed as the first
141 opaque value.
314 with the same value of the flush parameter and more output space (updated
330 value returned by deflateBound (see below). Then deflate is guaranteed to
373 exact value depends on the compression method), inflateInit determines the
448 256 is added to the value of strm->data_type when inflate() returns
470 on the return value of inflate() as noted below, when inflate() returns early
497 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example
544 compression at the expense of memory usage. The default value i
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dat91rm9200_lowlevel.c53 register unsigned value; local
83 value = AT91C_BASE_CKGR->CKGR_PLLAR;
84 value &= ~(AT91C_CKGR_DIVA | AT91C_CKGR_OUTA | AT91C_CKGR_MULA);
85 value |= OSC_MAIN_FREQ_DIV | AT91C_CKGR_OUTA_2 | AT91C_CKGR_SRCA |
87 AT91C_BASE_CKGR->CKGR_PLLAR = value;
94 value = AT91C_BASE_PMC->PMC_MCKR;
95 value &= ~(AT91C_PMC_MDIV | AT91C_PMC_PRES);
96 value |= AT91C_PMC_MDIV_3 | AT91C_PMC_PRES_CLK;
97 AT91C_BASE_PMC->PMC_MCKR = value;
104 value
[all...]
H A Demac.c346 unsigned value = 0x60020000 | (addr << 18); local
349 pEmac->EMAC_MAN = value;
366 unsigned value = 0x50020000 | (addr << 18) | s; local
369 pEmac->EMAC_MAN = value;
H A Dlib.h58 void p_memset(char *buffer, char value, int size);
H A Dmemset.c32 p_memset(char *buffer, char value, int size) argument
35 *buffer++ = value;
H A Dp_string.c30 * void p_memset(char *buffer, char value, int size)
32 * number of bytes to value.
36 p_memset(char *buffer, char value, int size) argument
39 *buffer++ = value;
H A Dspi_flash.c38 * Private function sends 8-bit value to the device and returns the 8-bit
39 * value in response.
222 unsigned value; local
256 value = pSPI->SPI_RDR;
257 value = pSPI->SPI_SR;
259 value = GetFlashStatus() & 0xFC;
261 if (value != 0xB4 && value != 0xAC)
262 printf(" Bad SPI status: 0x%x\n", value);
264 if (value !
[all...]
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Dlib.h53 void p_memset(char *buffer, char value, int size);
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dbootstrap.h160 * > 0 - ISA in system, value is read data port address
300 void (*arch_isaoutb)(int port, int value);
H A Dconsole.c38 static int cons_set(struct env_var *ev, int flags, const void *value);
42 static int twiddle_set(struct env_var *ev, int flags, const void *value);
56 /* We want a callback to install the new value when this var changes. */
176 cons_set(struct env_var *ev, int flags, const void *value) argument
180 if ((value == NULL) || (cons_check(value) == 0)) {
188 ret = cons_change(value);
192 env_setenv(ev->ev_name, flags | EV_NOHOOK, value, NULL, NULL);
301 twiddle_set(struct env_var *ev, int flags, const void *value) argument
306 tdiv = strtoul(value,
[all...]
/illumos-gate/usr/src/boot/sys/boot/efi/loader/
H A Ddevicename.c183 * Set currdev to suit the value being supplied in (value)
186 efi_setcurrdev(struct env_var *ev, int flags, const void *value) argument
191 rv = efi_parsedev(&ncurr, value, NULL);
196 env_setenv(ev->ev_name, flags | EV_NOHOOK, value, NULL, NULL);
H A Dloader_efi.h40 int efi_setcurrdev(struct env_var *ev, int flags, const void *value);
/illumos-gate/usr/src/boot/sys/boot/fdt/
H A Dfdt_loader_cmd.c379 /* Set actual property to a value from vect */
1188 /* Property without value */
1199 * Process property with value
1234 fdt_modprop(int nodeoff, char *propname, void *value, char mode) argument
1245 /* Adding inexistant value in mode 1 is forbidden */
1253 len = strlen(value);
1255 buf = value;
1280 rv = fdt_setprop_string(fdtp, nodeoff, propname, value);
1370 char *path, *propname, *value; local
1376 value
1457 char *path, *propname, *value; local
[all...]
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dcomconsole.c78 const void *value);
82 static int comc_parse_mode(struct serial *sp, const char *value);
140 char value[20]; local
177 env = comc_print_mode(port, value);
191 sprintf(value, "%s", port->ignore_cd? "true":"false");
193 env_setenv(name, EV_VOLATILE, value, comc_cd_set, env_nounset);
204 sprintf(value, "%s", port->rtsdtr_off? "true":"false");
206 env_setenv(name, EV_VOLATILE, value, comc_rtsdtr_set, env_nounset);
280 comc_parse_mode(struct serial *sp, const char *value) argument
287 n = strtol(value,
380 comc_mode_set(struct env_var *ev, int flags, const void *value) argument
401 comc_cd_set(struct env_var *ev, int flags, const void *value) argument
428 comc_rtsdtr_set(struct env_var *ev, int flags, const void *value) argument
532 comc_pcidev_set(struct env_var *ev, int flags, const void *value) argument
[all...]
H A Ddevicename.c193 * Set currdev to suit the value being supplied in (value)
196 i386_setcurrdev(struct env_var *ev, int flags, const void *value) argument
201 if ((rv = i386_parsedev(&ncurr, value, NULL)) != 0)
204 env_setenv(ev->ev_name, flags | EV_NOHOOK, value, NULL, NULL);
H A Dlibi386.h93 int i386_setcurrdev(struct env_var *ev, int flags, const void *value);
H A Dlinux.c312 char *value = vga + 4; local
315 if (strncmp(value, "normal", 6) < 1)
317 else if (strncmp(value, "ext", 3) < 1)
319 else if (strncmp(value, "ask", 3) < 1)
327 * however, the actual value is 16bit, so
330 mode = strtol(value, NULL, 0);
332 printf("bad value for video mode\n");
/illumos-gate/usr/src/boot/sys/boot/i386/loader/
H A Dmain.c69 static void isa_outb(int port, int value);
420 isa_outb(int port, int value) argument
423 outb(port, value);
/illumos-gate/usr/src/boot/sys/boot/libstand/
H A DMakefile.com35 CFLAGS += -Wno-pointer-sign -Wno-empty-body -Wno-unused-value \

Completed in 174 milliseconds

1234567891011>>