Searched refs:common (Results 1 - 25 of 36) sorted by relevance

12

/haiku/src/system/libroot/posix/glibc/include/
H A Dstdio_ext.h3 # include <stdio-common/stdio_ext.h>
/haiku/src/libs/libtelnet/
H A Dpk.h56 extern void common_key(char *secret, char *public, IdeaData *common,
H A Dpk.c59 * Choose top 128 bits of the common key to use as our idea key.
87 * Choose middle 64 bits of the common key to use as our des key, possibly
116 * get common key from my secret key and his public key
123 MINT *common; local
128 common = itom(0);
129 pow(public, secret, modulus, common);
130 extractdeskey(common, deskey);
131 extractideakey(common, ideakey);
133 mfree(common);
H A Denc_des.c456 goto common;
461 goto common;
466 goto common;
471 common:
H A Dkrb4encpwd.c367 goto common;
371 common:
H A Dsra.c257 /* calculate common key */
370 goto common;
374 goto common;
379 common:
H A Dkerberos.c431 goto common;
435 common:
H A Drsaencpwd.c414 goto common;
418 common:
H A Dkerberos5.c79 /* Either define them in both places, or put in some common header file. */
689 goto common;
693 common:
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp73 /*! \brief The portion of the volume descriptor common to all
84 iso9660_common_descriptor common; member in struct:iso9660_volume_descriptor
271 dump_common_descriptor(iso9660_common_descriptor *common, argument
278 common->type, descriptor_type_to_string(
279 (iso9660_descriptor_type)common->type)));
281 common->standard_identifier,
282 strncmp(common->standard_identifier, kISO9660Signature, 5) == 0
284 TRACE(("%s version: %d\n", indent, common->version));
295 dump_common_descriptor(&primary->common, indent, false);
348 check_common_descriptor(iso9660_common_descriptor *common) argument
383 iso9660_common_descriptor *common = NULL; local
[all...]
/haiku/src/system/libroot/posix/glibc/extensions/
H A Dgetopt_init.c31 #include <stdio-common/_itoa.h>
/haiku/3rdparty/os_probe/
H A D83haiku10 . /usr/share/os-prober/common.sh
/haiku/src/tests/servers/app/newClipping/
H A DLayer.cpp430 // done rebuilding regions, now copy common parts and redraw regions that became visible
432 // include the actual and the old fullVisible regions. later, we'll exclude the common parts.
436 // offset to layer's new location so that we can calculate the common region.
443 // fullVisible, we'll have the common region which can be copied using HW acceleration.
475 // compute the common region. we'll use HW acc to copy this to the new location.
479 // common region goes back to its original location. then, by excluding
558 BRegion common; local
559 get_user_regions(common);
560 common.IntersectWith(&invalid);
564 if (!common
[all...]
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dproto_cbi.c50 } common; member in union:_usb_mass_CBI_IDB
131 if(idb->common.type == CBI_IDB_TYPE_CCI){
132 switch(idb->common.value & CBI_IDB_VALUE_STATUS_MASK){
/haiku/src/system/libroot/posix/musl/math/
H A Dj0.c65 /* common method when |x|>=2 */
66 static double common(uint32_t ix, double x, int y0) function
126 return common(ix,x,0);
176 return common(ix,x,1);
H A Dj0f.c25 static float common(uint32_t ix, float x, int y0) function
77 return common(ix, x, 0);
118 return common(ix,x,1);
H A Dj1.c65 static double common(uint32_t ix, double x, int y1, int sign) function
125 return common(ix, fabs(x), 0, sign);
167 return common(ix, x, 1, 0);
H A Dj1f.c25 static float common(uint32_t ix, float x, int y1, int sign) function
76 return common(ix, fabsf(x), 0, sign);
115 return common(ix,x,1,0);
/haiku/src/tests/servers/app/newerClipping/
H A DWindowLayer.cpp499 // move along the already dirty regions that are common
532 BRegion common(*regionToShift);
533 // see if there is a common part at all
534 common.IntersectWith(region);
535 if (common.CountRects() > 0) {
536 // cut the common part from the region,
538 region->Exclude(&common);
539 common.OffsetBy(xOffset, yOffset);
540 region->Include(&common);
/haiku/src/add-ons/kernel/busses/virtio/virtio_pci/
H A Dvirtio_pci.cpp630 struct virtio_pci_cap common, isr, deviceCap; local
633 if (virtio_pci_find_capability(bus, VIRTIO_PCI_CAP_COMMON_CFG, &common,
634 sizeof(common)) != B_OK) {
653 if (common.length > 0)
654 bars[common.bar] = common.offset + common.length;
682 bus->commonCfgAddr = registers[common.bar] + common.offset;
/haiku/src/bin/network/telnet/
H A Dutilities.c564 goto common;
567 goto common;
570 goto common;
573 common:
/haiku/src/bin/network/telnetd/
H A Dutility.c647 goto common;
650 goto common;
653 goto common;
656 common:
/haiku/3rdparty/korli/
H A Dgenerate_ids_from_drivers.sh95 sed -e 's/#include.*//g' $TOPDIR/$driverPath/driver.c | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h - | sed -E -n "/supported_devices\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/.*0x([^ ,]+), 0x([^ \}]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
169 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/usb/wlan/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \)]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
184 sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/usb/${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h -include $TOPDIR/$driverPath/dev/$headername/usb/${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^typedef/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
/haiku/src/servers/app/
H A DWindow.cpp1753 BRegion* common = fRegionPool.GetRegion(*regionToShift); local
1754 if (!common)
1756 // see if there is a common part at all
1757 common->IntersectWith(region);
1758 if (common->CountRects() > 0) {
1759 // cut the common part from the region,
1761 region->Exclude(common);
1762 common->OffsetBy(xOffset, yOffset);
1763 region->Include(common);
1765 fRegionPool.Recycle(common);
[all...]
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohcireg.h363 }common; member in union:fwohci_txpkthdr::__anon5

Completed in 159 milliseconds

12