Home
last modified time | relevance | path

Searched refs:bsid (Results 1 – 8 of 8) sorted by relevance

/third_party/lz4/tests/
DcheckFrame.c128 int frameCheck(cRess_t ress, FILE* const srcFile, unsigned bsid, size_t blockSize) in frameCheck() argument
156 if (frameInfo.blockSizeID != (LZ4F_blockSizeID_t) bsid) in frameCheck()
158 frameInfo.blockSizeID, bsid); in frameCheck()
219 unsigned bsid=0; in main() local
258 bsid=0; in main()
260 bsid *= 10; in main()
261 bsid += (unsigned)(*argument - '0'); in main()
285 if (bsid == 0 || blockSize == 0) in main()
296 err = frameCheck(ress, srcFile, bsid, blockSize); in main()
/third_party/alsa-lib/modules/mixer/simple/
Dsbase.c330 struct bclass_sid *bsid; in simple_event_add1() local
335 bsid = list_entry(pos, struct bclass_sid, list); in simple_event_add1()
336 for (ui = 0; ui < bsid->count; ui++) { in simple_event_add1()
337 if (bsid->sids[ui].sid == sel->sid) { in simple_event_add1()
338 sid = &bsid->sids[ui]; in simple_event_add1()
/third_party/lz4/programs/
Dlz4io.c205 size_t LZ4IO_setBlockSizeID(LZ4IO_prefs_t* const prefs, unsigned bsid) in LZ4IO_setBlockSizeID() argument
210 if ((bsid < minBlockSizeID) || (bsid > maxBlockSizeID)) return 0; in LZ4IO_setBlockSizeID()
211 prefs->blockSizeId = (int)bsid; in LZ4IO_setBlockSizeID()
220 unsigned bsid = 0; in LZ4IO_setBlockSize() local
227 bsid++; in LZ4IO_setBlockSize()
228 if (bsid < 7) bsid = 7; in LZ4IO_setBlockSize()
229 prefs->blockSizeId = (int)(bsid-3); in LZ4IO_setBlockSize()
/third_party/ffmpeg/libavformat/
Dmpegts.h212 uint8_t bsid; member
Dspdifenc.c127 int bsid = pkt->data[5] >> 3; in spdif_header_eac3() local
128 if (bsid > 10 && (pkt->data[4] & 0xc0) != 0xc0) /* fscod */ in spdif_header_eac3()
Dmpegtsenc.c580 if (dvb_ac3_desc->bsid_flag) *q++ = dvb_ac3_desc->bsid; in mpegts_write_pmt()
2096 dvb_ac3_desc->bsid = hdr->bitstream_id; in mpegts_write_packet_internal()
Dmovenc.c358 uint8_t bsid; member
389 if (info->substream[0].bsid > 8) { in mov_write_ac3_tag()
393 info->substream[0].bsid); in mov_write_ac3_tag()
409 put_bits(&pbc, 5, info->substream[0].bsid); in mov_write_ac3_tag()
480 hdr->substreamid == 0 && info->substream[0].bsid) { in handle_eac3()
494 info->substream[hdr->substreamid].bsid = hdr->bitstream_id; in handle_eac3()
606 put_bits(&pbc, 5, info->substream[i].bsid); in mov_write_eac3_tag()
/third_party/ntfs-3g/libntfs-3g/
Dacls.c4160 SID *bsid; in encodesid() local
4166 bsid = (SID*)&bigsid; in encodesid()
4167 bsid->revision = SID_REVISION; in encodesid()
4170 bsid->identifier_authority.high_part = const_cpu_to_be16(0); in encodesid()
4171 bsid->identifier_authority.low_part = cpu_to_be32(auth); in encodesid()
4177 bsid->sub_authority[cnt] = cpu_to_le32(auth); in encodesid()
4181 bsid->sub_authority_count = cnt; in encodesid()
4182 if ((cnt > 0) && ntfs_valid_sid(bsid) in encodesid()
4183 && (ntfs_is_user_sid(bsid) || ntfs_known_group_sid(bsid))) { in encodesid()
4186 memcpy(sid, bsid, 4 * cnt + 8); in encodesid()