Searched refs:product (Results 1 - 25 of 56) sorted by relevance

123

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_base_S.c49 short unsigned *py, _BIG_FLOAT_DIGIT product[3])
53 * product
58 * is least significant, product[2] most.
73 product[0] = (_BIG_FLOAT_DIGIT) (acc & 0xffff);
74 product[1] = (_BIG_FLOAT_DIGIT) (acc >> 16);
75 product[2] = (_BIG_FLOAT_DIGIT) (carry);
80 short unsigned *py, _BIG_FLOAT_DIGIT product[3])
84 * product
89 * is least significant, product[2] most.
113 product[
48 _multiply_base_two_vector(short unsigned n, _BIG_FLOAT_DIGIT *px, short unsigned *py, _BIG_FLOAT_DIGIT product[3]) argument
79 _multiply_base_ten_vector(short unsigned n, _BIG_FLOAT_DIGIT *px, short unsigned *py, _BIG_FLOAT_DIGIT product[3]) argument
[all...]
H A D_times_power.c68 * pbf: Operand x, to be replaced by the product x * mult ** n.
81 * insufficient to hold the product, and malloc failed to
84 * insufficient to hold the product, and a new _big_float
85 * was allocated by malloc. newbf holds the product.
90 * on the last product.
299 _BIG_FLOAT_DIGIT product[3]; local
309 _multiply_base_two_vector((short unsigned) (istop - istart + 1), &(pbf->bsignificand[istart]), &(pp[j - istop]), product);
310 if (product[2] != 0)
311 _carry_propagate_two((unsigned long) product[2], &(pbf->bsignificand[j + 2]));
312 if (product[
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/unistat/
H A Dspcs_s_u.h105 * @param product Product code for tagging in log file.
111 spcs_log(const char *product, spcs_s_info_t *ustatus, const char *format, ...);
/illumos-gate/usr/src/lib/libc/port/fp/
H A D__x_power.c150 * dot product
154 * The product may fill as many as three base-2**16 digits; product[0]
155 * is the least significant, product[2] the most.
159 unsigned short *py, unsigned short *product)
174 product[0] = acc & 0xffff;
175 product[1] = acc >> 16;
176 product[2] = carry;
181 * dot product
185 * The product ma
158 __multiply_base_two_vector(unsigned short n, unsigned short *px, unsigned short *py, unsigned short *product) argument
191 __multiply_base_ten_vector(unsigned short n, unsigned short *px, unsigned short *py, unsigned short *product) argument
244 unsigned short multiplier, product[3]; local
[all...]
/illumos-gate/usr/src/lib/libc/i386/gen/
H A Dlmul.s45 movl %eax,%ecx / partial high(product)
49 addl %eax,%ecx / partial sum of high(product)
53 addl %edx,%ecx / final high(product)
/illumos-gate/usr/src/cmd/dispadmin/
H A Dsubr.c69 long product; local
71 product = htp->hrt_secs * htp->hrt_res;
73 if (product / htp->hrt_res == htp->hrt_secs) {
74 sum = product + htp->hrt_rem;
75 if (sum - htp->hrt_rem == product) {
/illumos-gate/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_GetDeviceProductProperties.c116 productLength = sizeof (pProps->product);
124 (void) strncpy(pProps->product,
125 devProdInfo.prodInfo.product,
H A DMP_GetMPLogicalUnitProperties.c339 productLength = sizeof (pProps->product);
346 (void) strncpy(pProps->product,
347 luInfo.prodInfo.product,
H A DMP_GetMultipathLusDevProd.c72 "inquiry-product-id", &pid);
193 (void) strncpy(inqProductID, devProdInfo.prodInfo.product,
194 sizeof (devProdInfo.prodInfo.product));
/illumos-gate/usr/src/lib/libunistat/common/
H A Dllib-lunistat41 void spcs_log(const char *product, spcs_s_info_t *status,
H A Dspcs_log.c54 spcs_log(const char *product, spcs_s_info_t *status, const char *format, ...) argument
85 fprintf(fp, "%s %s: ", spcstime(), product);
/illumos-gate/usr/src/man/man9p/
H A DMakefile34 inquiry-product-id.9p \
41 inquiry-product-id.9p := LINKSRC = inquiry-device-type.9p
/illumos-gate/usr/src/cmd/mdb/common/modules/libtopo/
H A Dlibtopo.c69 char uuid[36], root[36], plat[36], isa[36], machine[36], product[36]; local
100 if (mdb_readstr(product, sizeof (product), (uintptr_t)th.th_product)
103 (void) mdb_snprintf(product, sizeof (product), "<%p>",
125 mdb_printf("%-12s %-36s %-30s\n", "th_product", product,
512 char product[36], *opt_s = NULL, *opt_P = NULL; local
543 if (mdb_readstr(product, sizeof (product), (uintptr_t)th.th_product)
546 (void) mdb_snprintf(product, sizeo
[all...]
/illumos-gate/usr/src/cmd/format/
H A Dhardware_structs.h116 char *product; member in struct:disk_type
123 char *product; member in struct:efi_info
H A Dio.h121 void print_efi_string(char *vendor, char *product, char *revision,
/illumos-gate/usr/src/lib/scsi/libses/common/
H A Dses_plugin.c95 * We walk the list of plugins backwards, so that a product-specific
283 char *vendor, *product, *revision; local
316 * Create a local copy of the vendor/product/revision, strip out any
320 product = strdupa(libscsi_product(tp->st_target));
324 ses_plugin_cleanstr(product);
334 LIBSES_PLUGIN_VENDOR, isa, vendor, product,
340 LIBSES_PLUGIN_VENDOR, isa, vendor, product,
/illumos-gate/usr/src/lib/scsi/libsmp/common/
H A Dsmp_plugin.c270 char *c_vendor, *vendor, *product, *revision; local
309 * those matching the vendor/product/revision fields, and those
326 product = strdupa(tp->st_product);
330 smp_plugin_cleanstr(product);
362 LIBSMP_PLUGIN_VENDOR, isa, vendor, product, LIBSMP_PLUGIN_EXT);
367 LIBSMP_PLUGIN_VENDOR, isa, vendor, product,
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dsmbios.c82 const char* product; member in struct:smbios_attr
235 smbios_setenv("smbios.system.product", addr, 0x05);
250 smbios_setenv("smbios.planar.product", addr, 0x05);
403 smbios.product = smbios_getstring(info, 0x05);
447 const char* product)
453 smbios_match_str(product, smbios.product));
446 smbios_match(const char* bios_vendor, const char* maker, const char* product) argument
H A Dbiosmem.c63 * memory correctly. You need both maker and product as
71 const char* product; member in struct:bios_getmem_quirks
87 quirks[i].product))
/illumos-gate/usr/src/lib/fm/topo/modules/i86pc/x86pi/
H A Dx86pi_impl.h147 const char *product; member in struct:x86pi_hcfmri_info_s
H A Dx86pi_subr.c72 if (hc->product != NULL)
73 topo_mod_strfree(mod, (char *)hc->product);
215 /* product-id */
223 * No product information in the parent node or auth
224 * list. Use the product information in the hcfrmi
227 prod = (char *)hcfmri->product;
229 topo_mod_dprintf(mod, "%s: product name not "
235 * We continue even if the product information is not available
253 /* product-sn */
261 * No product
[all...]
/illumos-gate/usr/src/cmd/sgs/rtld.4.x/
H A Dumultiply.s88 andcc %g0, %g0, %o4 ! zero the partial product
142 ! Because of the way the shift into the partial product is calculated
159 ! of the product are in %o4
188 ! The folowing code adds (2**32) * %o0 to the product if the
211 or %o5, %o0, %o0 ! merge for true product
229 ! The folowing code adds (2**32) * %o0 to the product if the
252 or %o5, %o0, %o0 ! merge for true product
274 ! The folowing code adds (2**32) * %o0 to the product if the
297 or %o5, %o0, %o0 ! merge for true product
323 ! The folowing code adds (2**32) * %o0 to the product i
[all...]
/illumos-gate/usr/src/uts/common/io/usb/
H A Dusbdevs2h.awk42 # This product includes software developed by Christopher G. Demetriou.
146 function product(hfile) function
151 products[nproducts, 2] = $3; # product id
297 if ($1 == "product") {
298 product(hfile)
/illumos-gate/usr/src/uts/i86pc/io/acpi_drv/
H A Dacpi_video.c90 char *product; member in struct:acpi_video_smbios_info
739 char *mfg, *product; local
751 product = (char *)sminfo.smbi_product;
755 (strcmp(product, pblacklist->product) == 0)) {
/illumos-gate/usr/src/uts/common/sys/scsi/adapters/mpt_sas/mpi/
H A Dmpi2_history.txt76 * product specific codes up to 0xEFFF.
105 * Added defines for product-specific range of message
139 * 06-26-07 02.00.02 Adding generic structure for product-specific
179 * Added product-specific Manufacturing pages 16 to 31.
380 * BootFlags are now product-specific.
396 * Added new product id family for 2208.
428 * 03-29-12 02.00.21 Added a product specific range to event values.
453 * Added product-specific range to RAID Action values.

Completed in 151 milliseconds

123