Searched refs:src_sz (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Python/ |
D | pyhash.c | 367 siphash24(uint64_t k0, uint64_t k1, const void *src, Py_ssize_t src_sz) { in siphash24() argument 368 uint64_t b = (uint64_t)src_sz << 56; in siphash24() 379 while (src_sz >= 8) { in siphash24() 384 src_sz -= sizeof(mi); in siphash24() 392 switch (src_sz) { in siphash24() 416 pysiphash(const void *src, Py_ssize_t src_sz) { in pysiphash() argument 419 src, src_sz); in pysiphash() 423 _Py_KeyedHash(uint64_t key, const void *src, Py_ssize_t src_sz) in _Py_KeyedHash() argument 425 return siphash24(key, 0, src, src_sz); in _Py_KeyedHash()
|
/external/mesa3d/src/intel/compiler/ |
D | brw_vec4_surface_builder.cpp | 113 const src_reg &src, unsigned src_sz, in emit_send() argument 120 const unsigned sz = header_sz + addr_sz + src_sz; in emit_send() 134 for (unsigned i = 0; i < src_sz; i++) in emit_send()
|
D | brw_fs.cpp | 4477 const unsigned src_sz = inst->components_read(1); in lower_surface_logical_send() local 4479 const unsigned sz = header_sz + addr_sz + src_sz; in lower_surface_logical_send() 4493 for (unsigned i = 0; i < src_sz; i++) in lower_surface_logical_send() 4500 inst->mlen = header_sz + (addr_sz + src_sz) * inst->exec_size / 8; in lower_surface_logical_send()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vertex_sse.c | 204 GLuint src_sz) in emit_load() argument 206 load[sz-1][src_sz-1](p, dest, src); in emit_load()
|