Searched refs:fp (Results 151 - 171 of 171) sorted by relevance

1234567

/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_ra.c84 ra_fixedp_split(uint32_t *i, uint32_t *f, uint64_t fp) argument
89 *i = (fp >> RA_FP_SHIFT);
92 tmp = (fp & ((uint64_t)-1 >> (64 - RA_FP_SHIFT)));
98 ra_fp_sprintf(uint64_t fp) argument
104 ra_fixedp_split(&i, &f, fp);
H A Dieee80211_ra_vht.c83 ra_vht_fixedp_split(uint32_t *i, uint32_t *f, uint64_t fp) argument
88 *i = (fp >> RA_FP_SHIFT);
91 tmp = (fp & ((uint64_t)-1 >> (64 - RA_FP_SHIFT)));
97 ra_vht_fp_sprintf(uint64_t fp) argument
103 ra_vht_fixedp_split(&i, &f, fp);
/haiku/src/add-ons/kernel/bus_managers/firewire/
H A Dfwohci.cpp881 struct fw_pkt *fp; local
918 fp = &xfer->send.hdr;
919 tcode = fp->mode.common.tcode;
928 ld[i/4] = fp->mode.ld[i/4];
933 ohcifp->mode.stream.len = fp->mode.stream.len;
936 ld[1] = fp->mode.ld[1];
937 ld[2] = fp->mode.ld[2];
941 ohcifp->mode.asycomm.dst = fp->mode.hdr.dst;
2528 struct fw_pkt *fp; local
2545 fp
2646 fwohci_arcv_swap(struct fw_pkt *fp, int len) argument
2694 fwohci_get_plen(struct fwohci_softc *sc, fwohci_softc::fwohci_dbch *dbch, struct fw_pkt *fp) argument
2743 struct fw_pkt *fp; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2200/dev/iwi/
H A Dif_iwivar.h116 const struct firmware *fp; /* image handle */ member in struct:iwi_fw
/haiku/headers/private/kernel/arch/arm64/
H A Darch_cpu.h137 uint64 fp; member in struct:iframe
/haiku/headers/private/kernel/arch/m68k/
H A Darch_cpu.h289 #warning M68K: sizeof(fp*)
290 struct mc680x0_fp_data_reg fp[8]; member in struct:iframe
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipw.c409 const struct firmware *fp; local
446 fp = sc->sc_firmware;
447 if (fp->datasize < sizeof *hdr) {
449 "firmware image too short %zu\n", fp->datasize);
454 hdr = (const struct ipw_firmware_hdr *)fp->data;
455 if (fp->datasize < sizeof *hdr + le32toh(hdr->mainsz) +
458 "firmware image too short %zu\n", fp->datasize);
2316 const struct firmware *fp; local
2346 fp = sc->sc_firmware;
2347 hdr = (const struct ipw_firmware_hdr *)fp
[all...]
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_init.c177 register FILE *fp; local
332 if ((fp = fopen(path, "re")) != NULL) {
334 while (fgets(buf, (int)sizeof(buf), fp) != NULL) {
480 statp->_u._ext.ext->resfd = fcntl(fileno(fp), F_DUPFD_CLOEXEC, 0);
481 (void) fclose(fp);
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc62 inline void disconnect_gap_from_file(edit_buffer* buffer, FILE* fp) argument
64 if (buffer->gap_start_ptr != &fp->__bufp)
66 buffer->gap_start_normal = fp->__bufp;
362 // fp->__offset += fp->__bufp - fp->__buffer;
438 // Called by fseek(fp, pos, whence) if fp is bound to a edit_buffer.
568 // Called by fclose(fp) if fp i
[all...]
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c873 FILE* fp; local
877 fp = fopen( filename, "r" );
878 if ( fp == (FILE*) 0 )
885 r = fread( buf, 1, sizeof(buf) - 1, fp );
891 (void) fclose( fp );
1038 FILE* fp; local
1111 fp = fopen( authpath, "r" );
1112 if ( fp == (FILE*) 0 )
1126 while ( fgets( line, sizeof(line), fp ) != (char*) 0 )
1141 (void) fclose( fp );
2736 FILE* fp; local
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_asm.S144 mv fp, a0
H A Darch_thread.cpp56 thread->arch_info.context.s[0] = 0; // fp
196 signalFrameData->context.uc_mcontext.x[ 7] = frame->fp;
281 frame->fp = signalFrameData->context.uc_mcontext.x[ 7];
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fp.c75 if (putc (outc, fp) == EOF) \
86 if (PUT (fp, wide ? (const char *) wptr : ptr, outlen) != outlen) \
105 if (PAD (fp, ch, len) != len) \
140 __printf_fp (FILE *fp, argument
784 numbers are in the range of 0.0 <= fp < 8.0. We simply
910 /* |fp| < 1.0 and the selected type is 'f', so put "0."
/haiku/src/libs/compat/freebsd_iflib/compat/sys/
H A Dnv.h97 void nvlist_fdump(const nvlist_t *nvl, FILE *fp);
/haiku/src/add-ons/kernel/drivers/network/wlan/marvell88w8335/dev/malo/
H A Dif_malohal.c440 const uint8_t *fp; local
461 fp = (const uint8_t *)fw->data + count;
463 error = malo_hal_send_main(mh, fp, blocksize, seqnum++,
/haiku/src/apps/icon-o-matic/import_export/svg/
H A Dnanosvg.h2902 FILE* fp = NULL; local
2907 fp = fopen(filename, "rb");
2908 if (!fp) goto error;
2909 fseek(fp, 0, SEEK_END);
2910 size = ftell(fp);
2911 fseek(fp, 0, SEEK_SET);
2914 if (fread(data, 1, size, fp) != size) goto error;
2916 fclose(fp);
2923 if (fp) fclose(fp);
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2661.c2427 const struct firmware *fp; local
2444 fp = firmware_get(imagename);
2446 if (fp == NULL) {
2466 RAL_WRITE_REGION_1(sc, RT2661_MCU_CODE_BASE, fp->data, fp->datasize);
2485 firmware_put(fp, FIRMWARE_UNLOAD);
H A Drt2860.c4124 const struct firmware *fp; local
4130 fp = firmware_get("rt2860fw");
4132 if (fp == NULL) {
4141 RAL_WRITE_REGION_1(sc, RT2860_FW_BASE, fp->data, fp->datasize);
4164 firmware_put(fp, FIRMWARE_UNLOAD);
/haiku/src/libs/compat/freebsd_iflib/
H A Dnvlist.c676 nvlist_fdump(const nvlist_t *nvl, FILE *fp) argument
679 fflush(fp);
680 nvlist_dump(nvl, fileno(fp));
/haiku/src/bin/network/ftpd/
H A Dftpd.c678 FILE *fp; local
710 if ((fp = fopen(_PATH_FTPHOSTS, "r")) != NULL) {
715 while ((line = fgetln(fp, &len)) != NULL) {
877 (void) fclose(fp);
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c5019 const struct firmware *fp; local
5030 fp = firmware_get(WPI_FW_NAME);
5033 if (fp == NULL) {
5039 sc->fw_fp = fp;
5041 if (fp->datasize < sizeof (struct wpi_firmware_hdr)) {
5043 "firmware file too short: %zu bytes\n", fp->datasize);
5048 fw->size = fp->datasize;
5049 fw->data = (const uint8_t *)fp->data;

Completed in 329 milliseconds

1234567