HomeSort by relevance Sort by last modified time
    Searched refs:cbp (Results 1 - 7 of 7) sorted by null

  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 553 char *cbp = h->body + h->chunk_start; local
554 if (bbp-cbp >= 2 && bbp[-2] == '\r' &&
560 if (!isxdigit(*cbp))
562 h->chunk_size = strtoul(cbp, NULL, 16);
567 bbp = cbp;
  /external/wpa_supplicant_8/src/wps/
httpread.c 547 char *cbp = h->body + h->chunk_start; local
548 if (bbp-cbp >= 2 && bbp[-2] == '\r' &&
554 if (!isxdigit(*cbp))
556 h->chunk_size = strtoul(cbp, NULL, 16);
561 bbp = cbp;
  /external/qemu/hw/
usb-ohci.c 200 uint32_t cbp; member in struct:ohci_td
556 ptr = td->cbp;
894 if (td.cbp && td.be) {
895 if ((td.cbp & 0xfffff000) != (td.be & 0xfffff000)) {
896 len = (td.be & 0xfff) + 0x1001 - (td.cbp & 0xfff);
898 len = (td.be - td.cbp) + 1;
908 dprintf(" TD @ 0x%.8x %u bytes %s r=%d cbp=0x%.8x be=0x%.8x\n",
909 addr, len, str, flag_r, td.cbp, td.be);
977 td.cbp = 0;
979 td.cbp += ret
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_macroblock_layer.c 560 /* luma cbp in bits 0-3 */
734 /* luma cbp in bits 0-3 */
885 u32 cbp; local
893 cbp = 15;
895 cbp = 0;
903 cbp += tmp << 4;
905 return(cbp);
    [all...]
  /external/openssl/crypto/bio/
bio.h 577 #define BIO_get_info_callback(b,cbp) (int)BIO_ctrl(b,BIO_CTRL_GET_CALLBACK,0, \
578 cbp)
    [all...]
  /external/openssl/include/openssl/
bio.h 577 #define BIO_get_info_callback(b,cbp) (int)BIO_ctrl(b,BIO_CTRL_GET_CALLBACK,0, \
578 cbp)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 239 PutMCBPC_Intra(Int cbp, Int mode, BitstreamEncVideo *bitstream)
244 ind = ((mode_MBtype[mode] >> 1) & 3) | ((cbp & 3) << 2);
254 PutMCBPC_Inter(Int cbp, Int mode, BitstreamEncVideo *bitstream)
259 ind = (mode_MBtype[mode] & 7) | ((cbp & 3) << 3);
892 UChar CBP;
901 /* DC and AC Prediction, 5/28/01, compute CBP, intraDC_decision*/
904 /* CBP, Run, Level, and Sign */
906 CBP = video->headerInfo.CBP[mbnum];
925 PutMCBPC_Intra(CBP, Mode, bs1); /* MCBPC *
    [all...]

Completed in 409 milliseconds