Home
last modified time | relevance | path

Searched refs:int8_t (Results 1 – 25 of 549) sorted by relevance

12345678910>>...22

/freebsd/sys/fs/msdosfs/
H A Dbpb.h104 int8_t bpbBytesPerSec[2]; /* bytes per sector */
105 int8_t bpbSecPerClust; /* sectors per cluster */
106 int8_t bpbResSectors[2]; /* number of reserved sectors */
107 int8_t bpbFATs; /* number of FATs */
108 int8_t bpbRootDirEnts[2]; /* number of root directory entries */
109 int8_t bpbSectors[2]; /* total number of sectors */
110 int8_t bpbMedia; /* media descriptor */
111 int8_t bpbFATsecs[2]; /* number of sectors per FAT */
112 int8_t bpbSecPerTrack[2]; /* sectors per track */
113 int8_t bpbHeads[2]; /* number of heads */
[all …]
H A Dbootsect.h28 int8_t bsOemName[8]; /* OEM name and version */
29 int8_t bsBPB[19]; /* BIOS parameter block */
30 int8_t bsDriveNumber; /* drive number (0x80) */
31 int8_t bsBootCode[479]; /* pad so struct is 512b */
39 int8_t exDriveNumber; /* drive number (0x80) */
40 int8_t exReserved1; /* reserved */
41 int8_t exBootSignature; /* ext. boot signature (0x29) */
43 int8_t exVolumeID[4]; /* volume ID number */
44 int8_t exVolumeLabel[11]; /* volume label */
45 int8_t exFileSysType[8]; /* fs type (FAT12 or FAT16) */
[all …]
/freebsd/sys/contrib/alpine-hal/
H A Dal_hal_serdes_interface.h357 int8_t dfe_first_tap_even0_ctrl;
359 int8_t dfe_first_tap_even1_ctrl;
361 int8_t dfe_first_tap_odd0_ctrl;
363 int8_t dfe_first_tap_odd1_ctrl;
365 int8_t dfe_second_tap_ctrl;
367 int8_t dfe_third_tap_ctrl;
369 int8_t dfe_fourth_tap_ctrl;
371 int8_t dfe_fifth_tap_ctrl;
376 int8_t dcd_trim;
383 int8_t los_offset;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h66 enum BracketAlignmentStyle : int8_t {
110 enum ArrayInitializerAlignmentStyle : int8_t {
472 enum EscapedNewlineAlignmentStyle : int8_t {
513 enum OperandAlignmentStyle : int8_t {
552 enum TrailingCommentsAlignmentKinds : int8_t {
679 enum BreakBeforeNoexceptSpecifierStyle : int8_t {
721 enum ShortBlockStyle : int8_t {
814 enum ShortFunctionStyle : int8_t {
866 enum ShortIfStyle : int8_t {
938 enum ShortLambdaStyle : int8_t {
[all …]
/freebsd/sys/dev/cxgbe/
H A Dt4_ioctl.h256 int8_t level; /* scheduler hierarchy level */
257 int8_t mode; /* per-class or per-flow */
258 int8_t rateunit; /* bit or packet rate */
259 int8_t ratemode; /* %port relative or kbps absolute */
260 int8_t channel; /* scheduler channel [0..N] */
261 int8_t cl; /* scheduler class [0..N] */
273 int8_t subcmd; /* sub-command */
274 int8_t type; /* packet or flow */
277 int8_t minmax; /* minmax enable */
320 int8_t queue; /* queue index; -1 => all queues */
[all …]
/freebsd/sys/dev/sound/pcm/
H A Dpcm.h146 v = INTPCM_T((int8_t)*src); in pcm_sample_read()
149 v = INTPCM_T((int8_t)(*src ^ 0x80)); in pcm_sample_read()
152 v = INTPCM_T(src[0] | (int8_t)src[1] << 8); in pcm_sample_read()
155 v = INTPCM_T(src[1] | (int8_t)src[0] << 8); in pcm_sample_read()
158 v = INTPCM_T(src[0] | (int8_t)(src[1] ^ 0x80) << 8); in pcm_sample_read()
161 v = INTPCM_T(src[1] | (int8_t)(src[0] ^ 0x80) << 8); in pcm_sample_read()
164 v = INTPCM_T(src[0] | src[1] << 8 | (int8_t)src[2] << 16); in pcm_sample_read()
167 v = INTPCM_T(src[2] | src[1] << 8 | (int8_t)src[0] << 16); in pcm_sample_read()
171 (int8_t)(src[2] ^ 0x80) << 16); in pcm_sample_read()
175 (int8_t)(src[0] ^ 0x80) << 16); in pcm_sample_read()
[all …]
/freebsd/sys/dev/rtwn/rtl8192e/
H A Dr92e_var.h39 int8_t cck_tx_pwr[R92E_MAX_RF_PATH][R92E_GROUP_2G];
40 int8_t ht40_tx_pwr_2g[R92E_MAX_RF_PATH][R92E_GROUP_2G];
42 int8_t cck_tx_pwr_diff_2g[R92E_MAX_RF_PATH][R92E_MAX_TX_COUNT];
43 int8_t ofdm_tx_pwr_diff_2g[R92E_MAX_RF_PATH][R92E_MAX_TX_COUNT];
44 int8_t bw20_tx_pwr_diff_2g[R92E_MAX_RF_PATH][R92E_MAX_TX_COUNT];
45 int8_t bw40_tx_pwr_diff_2g[R92E_MAX_RF_PATH][R92E_MAX_TX_COUNT];
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIModeRegisterDefaults.h96 enum AMDGPUFltRounds : int8_t {
98 TowardZero = static_cast<int8_t>(RoundingMode::TowardZero),
99 NearestTiesToEven = static_cast<int8_t>(RoundingMode::NearestTiesToEven),
100 TowardPositive = static_cast<int8_t>(RoundingMode::TowardPositive),
101 TowardNegative = static_cast<int8_t>(RoundingMode::TowardNegative),
103 static_cast<int8_t>(RoundingMode::NearestTiesToAway),
105 Dynamic = static_cast<int8_t>(RoundingMode::Dynamic),
130 Invalid = static_cast<int8_t>(RoundingMode::Invalid)
/freebsd/sys/dev/ath/ath_hal/
H A Dah_eeprom_9287.h72 int8_t pwrTableOffset;
73 int8_t tempSensSlope;
74 int8_t tempSensSlopePalOn;
81 int8_t antennaGainCh[AR9287_MAX_CHAINS];
85 int8_t adcDesiredSize;
90 int8_t noiseFloorThreshCh[AR9287_MAX_CHAINS];
93 int8_t iqCalICh[AR9287_MAX_CHAINS];
94 int8_t iqCalQCh[AR9287_MAX_CHAINS];
161 int8_t ee_antennaGainMax[2];
H A Dah_desc.h38 int8_t ts_rssi; /* tx ack RSSI */
55 int8_t ts_rssi_ctl[3]; /* tx ack RSSI [ctl, chain 0-2] */
56 int8_t ts_rssi_ext[3]; /* tx ack RSSI [ext, chain 0-2] */
101 int8_t rs_rssi; /* rx frame RSSI (combined for 11n) */
108 int8_t rs_rssi_ctl[3]; /* rx frame RSSI [ctl, chain 0-2] */
109 int8_t rs_rssi_ext[3]; /* rx frame RSSI [ext, chain 0-2] */
H A Dah_eeprom_v4k.h81 int8_t antennaGainCh[AR5416_4K_MAX_CHAINS]; // 1
86 int8_t pgaDesiredSize; // 1
95 int8_t iqCalICh[AR5416_4K_MAX_CHAINS]; // 1
96 int8_t iqCalQCh[AR5416_4K_MAX_CHAINS]; // 1
180 int8_t ee_antennaGainMax;
/freebsd/sys/dev/wtap/
H A Dif_wtapioctl.h102 int8_t ast_tx_rssi; /* tx rssi of last ack */
103 int8_t ast_rx_rssi; /* rx rssi from histogram */
125 int8_t ast_rx_noise; /* rx noise floor */
151 int8_t wr_antsignal;
152 int8_t wr_antnoise;
158 int8_t wr_chan_maxpow;
175 int8_t wt_chan_maxpow;
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dendian_test.cpp61 int8_t original_int8 = static_cast<int8_t>(value); in TEST()
76 original_int8 = static_cast<int8_t>(value); in TEST()
112 EXPECT_EQ(int8_t(0x11), getSwappedBytes(int8_t(0x11))); in TEST()
153 int8_t value = 0x11; in TEST()
155 EXPECT_EQ(int8_t(0x11), value); in TEST()
/freebsd/sys/dev/puc/
H A Dpuc_cfg.h79 int8_t ports;
80 int8_t rid; /* Rid of first port */
81 int8_t d_rid; /* Delta rid of next ports */
82 int8_t d_ofs; /* Delta offset of next ports */
/freebsd/sys/dev/rtwn/rtl8192c/
H A Dr92c_priv.h31 int8_t ht40_2s_tx_pwr_diff[R92C_MAX_CHAINS][R92C_GROUP_2G];
32 int8_t ht20_tx_pwr_diff[R92C_MAX_CHAINS][R92C_GROUP_2G];
33 int8_t ofdm_tx_pwr_diff[R92C_MAX_CHAINS][R92C_GROUP_2G];
34 int8_t ht40_max_pwr[R92C_MAX_CHAINS][R92C_GROUP_2G];
35 int8_t ht20_max_pwr[R92C_MAX_CHAINS][R92C_GROUP_2G];
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300eep.h247int8_t pwrTableOffset; // offset in dB to be added to beginning of pdadc table in calibration
276 int8_t tempslopextension[MAX_TEMP_SLOPE];
277 int8_t quick_drop_low;
278 int8_t quick_drop_high;
282 int8_t temp_slope_low;
283 int8_t temp_slope_high;
303 int8_t temp_slope;
304 int8_t voltSlope;
306 int8_t noise_floor_thresh_ch[OSPREY_MAX_CHAINS];// 3 //Check if the register is per chain
308 int8_t quick_drop;
[all …]
/freebsd/sys/dev/cxgbe/tom/
H A Dt4_tom.h104 int8_t rx_coalesce;
105 int8_t cong_algo;
106 int8_t tc_idx;
107 int8_t tstamp;
108 int8_t sack;
109 int8_t nagle;
110 int8_t keepalive;
111 int8_t wscale;
112 int8_t ecn;
113 int8_t mtu_idx;
[all …]
/freebsd/sys/dev/ral/
H A Drt2860var.h38 int8_t wr_antsignal;
39 int8_t wr_antnoise;
167 int8_t txpow1[54];
168 int8_t txpow2[54];
169 int8_t rssi_2ghz[3];
170 int8_t rssi_5ghz[3];
/freebsd/sys/dev/ath/ath_hal/ar9002/
H A Dar9287_olc.c84 int8_t val; in ar9287olcTemperatureCompensation()
106 uint8_t *pCalChans, uint16_t availPiers, int8_t *pPwr) in ar9287olcGetTxGainIndex()
124 *pPwr = (int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0]; in ar9287olcGetTxGainIndex()
126 *pPwr = ((int8_t) pRawDatasetOpLoop[idxL].pwrPdg[0][0] + in ar9287olcGetTxGainIndex()
127 (int8_t) pRawDatasetOpLoop[idxR].pwrPdg[0][0])/2; in ar9287olcGetTxGainIndex()
/freebsd/sys/dev/malo/
H A Dif_maloioctl.h64 int8_t mst_rx_rssi;
65 int8_t mst_rx_noise;
91 int8_t wr_antsignal;
92 int8_t wr_antnoise;
/freebsd/contrib/ntp/include/
H A Dmbg_gps166.h406 int8_t month; ///< month, 1..12
407 int8_t mday; ///< day of month, 1..31
409 int8_t wday; ///< day of week, 0..6 == Sun..Sat
410 int8_t hour; ///< hours, 0..23
411 int8_t min; ///< minutes, 0..59
412 int8_t sec; ///< seconds, 0..59, or 60 in case of inserted leap second
840 int8_t delta_tls; ///< Current %UTC offset to GPS system time [sec]
841int8_t delta_tlsf; ///< Future %UTC offset to GPS system time after next leap second transition …
/freebsd/sys/dev/usb/wlan/
H A Dif_runvar.h52 int8_t wr_dbm_antsignal;
196 int8_t txpow1[54];
197 int8_t txpow2[54];
198 int8_t txpow3[54];
199 int8_t rssi_2ghz[3];
200 int8_t rssi_5ghz[3];
/freebsd/sys/net80211/
H A D_ieee80211.h142 int8_t ic_maxregpower; /* maximum regulatory tx power in dBm */
143 int8_t ic_maxpower; /* maximum tx power in .5 dBm */
144 int8_t ic_minpower; /* minimum tx power in .5 dBm */
147 int8_t ic_maxantgain; /* maximum antenna gain in .5 dBm */
426 int8_t rssi; /* rssi thresh (.5 dBm) */
459 int8_t rssi[IEEE80211_MAX_CHAIN_PRISEC];
460 int8_t noise[IEEE80211_MAX_CHAIN_PRISEC];
626 int8_t c_nf; /* global NF */
627 int8_t c_rssi; /* global RSSI */
/freebsd/sys/dev/mwl/
H A Dif_mwlioctl.h65 int8_t mst_rx_rssi;
66 int8_t mst_rx_noise;
113 int8_t wr_antsignal;
114 int8_t wr_antnoise;
/freebsd/sys/dev/ath/
H A Dif_athioctl.h108 int8_t ast_tx_rssi; /* tx rssi of last ack */
109 int8_t ast_rx_rssi; /* rx rssi from histogram */
133 int8_t ast_rx_noise; /* rx noise floor */
353 int8_t wr_antsignal;
354 int8_t wr_antnoise;
360 int8_t wr_chan_maxpow;
400 int8_t wt_chan_maxpow;

12345678910>>...22