Searched refs:pchk (Results 1 – 3 of 3) sorted by relevance
/third_party/libsnd/src/ |
D | chunk.c | 42 { const READ_CHUNKS * pchk = &psf->rchunks ; in psf_get_chunk_iterator() local 46 idx = psf_find_read_chunk_str (pchk, marker_str) ; in psf_get_chunk_iterator() 48 idx = pchk->used > 0 ? 0 : -1 ; in psf_get_chunk_iterator() 88 psf_next_chunk_iterator (const READ_CHUNKS * pchk , SF_CHUNK_ITERATOR * iterator) in psf_next_chunk_iterator() argument 95 { for (k = iterator->current ; k < pchk->used ; k++) in psf_next_chunk_iterator() 96 if (pchk->chunks [k].hash == hash) in psf_next_chunk_iterator() 101 else if (iterator->current < pchk->used) in psf_next_chunk_iterator() 110 psf_store_read_chunk (READ_CHUNKS * pchk, const READ_CHUNK * rchunk) in psf_store_read_chunk() argument 111 { if (pchk->count == 0) in psf_store_read_chunk() 112 { pchk->used = 0 ; in psf_store_read_chunk() [all …]
|
D | common.h | 964 SF_CHUNK_ITERATOR * psf_next_chunk_iterator (const READ_CHUNKS * pchk , SF_CHUNK_ITERATOR *iterator… 965 int psf_store_read_chunk_u32 (READ_CHUNKS * pchk, uint32_t marker, sf_count_t offset, uint32_t len… 966 int psf_store_read_chunk_str (READ_CHUNKS * pchk, const char * marker, sf_count_t offset, uint32_t… 967 int psf_save_write_chunk (WRITE_CHUNKS * pchk, const SF_CHUNK_INFO * chunk_info) ; 968 int psf_find_read_chunk_str (const READ_CHUNKS * pchk, const char * marker) ; 969 int psf_find_read_chunk_m32 (const READ_CHUNKS * pchk, uint32_t marker) ; 970 int psf_find_read_chunk_iterator (const READ_CHUNKS * pchk, const SF_CHUNK_ITERATOR * marker) ; 972 int psf_find_write_chunk (WRITE_CHUNKS * pchk, const char * marker) ;
|
/third_party/ntfs-3g/libntfs-3g/ |
D | acls.c | 978 } checks[2], *pchk; in ntfs_valid_posix() local 1006 pchk = &checks[1]; in ntfs_valid_posix() 1008 pchk = &checks[0]; in ntfs_valid_posix() 1011 pchk->tagsset |= tag; in ntfs_valid_posix() 1014 if ((tag < pchk->previous) in ntfs_valid_posix() 1015 || ((tag == pchk->previous) in ntfs_valid_posix() 1016 && (id <= pchk->previousid))) in ntfs_valid_posix() 1018 pchk->previous = tag; in ntfs_valid_posix() 1019 pchk->previousid = id; in ntfs_valid_posix() 1022 if (pchk->owners++) in ntfs_valid_posix() [all …]
|