Searched defs:hash (Results 1 - 6 of 6) sorted by relevance

/hardware/intel/common/libwsbm/src/
H A Dwsbm_driver.h104 uint32_t hash; member in struct:_ValidateNode
H A Dwsbm_manager.c148 uint32_t hash, uint64_t flags, uint64_t mask)
171 hashHead = list->hashTable + hash;
180 uint32_t hash, i; local
182 for (hash = 0, i = 0; i < len; ++i) {
183 hash += *key++;
184 hash += (hash << 10);
185 hash ^= (hash >> 6);
188 hash
147 validateListAddNode(struct _ValidateList *list, void *item, uint32_t hash, uint64_t flags, uint64_t mask) argument
1063 uint32_t hash; local
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dwebmenc.c292 void write_webm_file_footer(struct EbmlGlobal *glob, int hash) { argument
328 Ebml_SerializeUnsigned32(glob, TrackUID, glob->debug ? 0xDEADBEEF : hash);
H A Dvpxenc.c127 /* Murmur hash derived from public domain reference implementation at
622 uint32_t hash; member in struct:stream_state
1179 write_webm_file_footer(&stream->ebml, stream->hash);
1337 /* Update the hash */
1339 stream->hash = murmur(pkt->data.frame.buf,
1341 stream->hash);
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Dml_math_func.c541 /** bernstein hash, derived from public domain source */
544 uint32_t hash = 5381; local
549 hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
552 return hash;
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Dml_math_func.c541 /** bernstein hash, derived from public domain source */
544 uint32_t hash = 5381; local
549 hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
552 return hash;

Completed in 204 milliseconds