Searched refs:pIn (Results 1 – 7 of 7) sorted by relevance
| /OK3568_Linux_fs/kernel/lib/lz4/ |
| H A D | lz4defs.h | 194 const BYTE *pIn, in LZ4_count() argument 198 const BYTE *const pStart = pIn; in LZ4_count() 200 while (likely(pIn < pInLimit - (STEPSIZE - 1))) { in LZ4_count() 201 size_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count() 204 pIn += STEPSIZE; in LZ4_count() 209 pIn += LZ4_NbCommonBytes(diff); in LZ4_count() 211 return (unsigned int)(pIn - pStart); in LZ4_count() 215 if ((pIn < (pInLimit - 3)) in LZ4_count() 216 && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { in LZ4_count() 217 pIn += 4; in LZ4_count() [all …]
|
| /OK3568_Linux_fs/buildroot/package/alsa-lib/ |
| H A D | 0003-add-gain-for-audio-input.patch | 15 @@ -854,6 +854,24 @@ void DCBDoing(void* pIn, int length, int channels) 19 +void add_gain(void* pIn, int length, int channels) 22 + int16_t * pInBuf = (int16_t *)pIn;
|
| H A D | 0002-add-dcbfilter-16bit-process.patch | 142 +void DCBDoing(void* pIn, int length, int channels) 145 + int16_t * pInBuf = (int16_t *)pIn;
|
| /OK3568_Linux_fs/kernel/lib/zstd/ |
| H A D | compress.c | 907 static size_t ZSTD_count(const BYTE *pIn, const BYTE *pMatch, const BYTE *const pInLimit) in ZSTD_count() argument 909 const BYTE *const pStart = pIn; in ZSTD_count() 912 while (pIn < pInLoopLimit) { in ZSTD_count() 913 size_t const diff = ZSTD_readST(pMatch) ^ ZSTD_readST(pIn); in ZSTD_count() 915 pIn += sizeof(size_t); in ZSTD_count() 919 pIn += ZSTD_NbCommonBytes(diff); in ZSTD_count() 920 return (size_t)(pIn - pStart); in ZSTD_count() 923 if ((pIn < (pInLimit - 3)) && (ZSTD_read32(pMatch) == ZSTD_read32(pIn))) { in ZSTD_count() 924 pIn += 4; in ZSTD_count() 927 if ((pIn < (pInLimit - 1)) && (ZSTD_read16(pMatch) == ZSTD_read16(pIn))) { in ZSTD_count() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/usb/GobiNet/ |
| H A D | GobiUSBNet.c | 1433 struct usb_host_endpoint * pIn = NULL; in GobiNetDriverBind() local 1483 pIn = pEndpoint; in GobiNetDriverBind() 1491 if (pIn == NULL || pOut == NULL) in GobiNetDriverBind() 1506 pIn->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK ); in GobiNetDriverBind() 1555 pIn->desc.bEndpointAddress, in GobiNetDriverBind()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bu/hal/rtl8723b/ |
| H A D | rtl8723b_hal_init.c | 4069 u8 *pIn, *pOut; in Hal_EEValueCheck() local 4070 pIn = (u8*)pInValue; in Hal_EEValueCheck() 4072 if(*pIn <= 63) in Hal_EEValueCheck() 4074 *pOut = *pIn; in Hal_EEValueCheck() 4079 *pIn, EEPROM_Default_TxPowerLevel)); in Hal_EEValueCheck()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bs/hal/rtl8723b/ |
| H A D | rtl8723b_hal_init.c | 3542 u8 *pIn, *pOut; in Hal_EEValueCheck() local 3543 pIn = (u8 *)pInValue; in Hal_EEValueCheck() 3545 if (*pIn <= 63) in Hal_EEValueCheck() 3546 *pOut = *pIn; in Hal_EEValueCheck()
|