Home
last modified time | relevance | path

Searched refs:p32 (Results 1 – 25 of 44) sorted by relevance

12

/external/e2fsprogs/lib/ext2fs/
Dcrc32c.c78 const uint32_t *p32; in crc32c_le_body() local
92 p32 = (uint32_t *)PTR_ALIGN(p8, 4); in crc32c_le_body()
93 init_bytes = min((uintptr_t)p32 - (uintptr_t)p8, len); in crc32c_le_body()
108 p32--; in crc32c_le_body()
112 q = *++p32 ^ crc; in crc32c_le_body()
119 q = *++p32 ^ crc; in crc32c_le_body()
128 p8 = (uint8_t *)(++p32); in crc32c_le_body()
148 const uint32_t *p32; in crc32c_be_body() local
159 p32 = (uint32_t *)PTR_ALIGN(p8, 4); in crc32c_be_body()
160 init_bytes = min((uintptr_t)p32 - (uintptr_t)p8, len); in crc32c_be_body()
[all …]
/external/elfutils/libdwfl/
Delf-from-memory.c218 Elf32_Phdr (*p32)[phnum] = phdrsp; in elf_from_remote_memory() local
255 if ((*p32)[i].p_type == PT_LOAD) in elf_from_remote_memory()
256 if (handle_segment ((*p32)[i].p_vaddr, (*p32)[i].p_offset, in elf_from_remote_memory()
257 (*p32)[i].p_filesz, (*p32)[i].p_memsz)) in elf_from_remote_memory()
321 if ((*p32)[i].p_type == PT_LOAD) in elf_from_remote_memory()
322 if (handle_segment ((*p32)[i].p_vaddr, (*p32)[i].p_offset, in elf_from_remote_memory()
323 (*p32)[i].p_filesz)) in elf_from_remote_memory()
Ddwfl_segment_report_module.c579 Elf32_Phdr (*p32)[phnum] = phdrsp; in dwfl_segment_report_module() local
587 consider_phdr ((*p32)[i].p_type, in dwfl_segment_report_module()
588 (*p32)[i].p_vaddr, (*p32)[i].p_memsz, in dwfl_segment_report_module()
589 (*p32)[i].p_offset, (*p32)[i].p_filesz, in dwfl_segment_report_module()
590 (*p32)[i].p_align); in dwfl_segment_report_module()
904 read_phdr ((*p32)[i].p_type, (*p32)[i].p_vaddr, in dwfl_segment_report_module()
905 (*p32)[i].p_offset, (*p32)[i].p_filesz); in dwfl_segment_report_module()
Dlink_map.c876 Elf32_Phdr (*p32)[phnum] = buf; in dwfl_link_map_report() local
899 if (consider_phdr ((*p32)[i].p_type, in dwfl_link_map_report()
900 (*p32)[i].p_vaddr, in dwfl_link_map_report()
901 (*p32)[i].p_filesz)) in dwfl_link_map_report()
/external/valgrind/memcheck/tests/
Datomic_incs.c751 int* p32; in main() local
767 p32 = (int*)(page+512); in main()
772 assert( IS_8_ALIGNED(p32) ); in main()
779 *p32 = 0; in main()
794 atomic_add_32bit(p32, 1); in main()
809 atomic_add_32bit(p32, 1); in main()
820 (int)(*(signed char*)p8), (int)(*p16), *p32, *p64 ); in main()
824 && 6913974 == *p32 in main()
/external/fio/crc/
Dxxhash.c308 const uint32_t* p32 = (const uint32_t*)state->memory; in XXH32_update_endian() local
309 …state->v1 += XXH_readLE32(p32, endian) * PRIME32_2; state->v1 = XXH_rotl32(state->v1, 13); state->… in XXH32_update_endian()
310 …state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; state->v2 = XXH_rotl32(state->v2, 13); state->… in XXH32_update_endian()
311 …state->v3 += XXH_readLE32(p32, endian) * PRIME32_2; state->v3 = XXH_rotl32(state->v3, 13); state->… in XXH32_update_endian()
312 …state->v4 += XXH_readLE32(p32, endian) * PRIME32_2; state->v4 = XXH_rotl32(state->v4, 13); state->… in XXH32_update_endian()
/external/opencv3/modules/cudaoptflow/src/cuda/
Dtvl1flow.cu219 const PtrStepf p31, const PtrStepf p32, in estimateUKernel() argument
275 const float div_p3 = gamma ? divergence(p31, p32, y, x) : 0; in estimateUKernel()
298 … PtrStepSzf p11, PtrStepSzf p12, PtrStepSzf p21, PtrStepSzf p22, PtrStepSzf p31, PtrStepSzf p32, in estimateU() argument
306 …rid, block, 0, stream>>>(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, error,… in estimateU()
320 …tepf p11, PtrStepf p12, PtrStepf p21, PtrStepf p22, PtrStepf p31, PtrStepf p32, const float taut, … in estimateDualVariablesKernel() argument
352 p32(y, x) = (p32(y, x) + taut * u3y) / ng3; in estimateDualVariablesKernel()
357 … PtrStepSzf p11, PtrStepSzf p12, PtrStepSzf p21, PtrStepSzf p22, PtrStepSzf p31, PtrStepSzf p32, in estimateDualVariables() argument
364 …VariablesKernel<<<grid, block, 0, stream>>>(u1, u2, u3, p11, p12, p21, p22, p31, p32, taut, gamma); in estimateDualVariables()
/external/icu/icu4c/source/tools/toolutil/
Dwritesrc.c107 const uint32_t *p32; in usrc_writeArray() local
113 p32=NULL; in usrc_writeArray()
122 p32=(const uint32_t *)p; in usrc_writeArray()
148 value=p32[i]; in usrc_writeArray()
/external/llvm/test/CodeGen/AArch64/
Darm64-2011-03-21-Unaligned-Frame-Index.ll8 %p32 = getelementptr inbounds [49 x i32], [49 x i32]* %a, i64 0, i64 2
9 %p = bitcast i32* %p32 to i64*
/external/icu/icu4c/source/common/
Duresdata.cpp333 const int32_t *p32= res==0 ? &gEmptyString.length : pResData->pRoot+res; in res_getString() local
334 length=*p32++; in res_getString()
335 p=(const UChar *)p32; in res_getString()
359 const int32_t *p32=pResData->pRoot+res; in isNoInheritanceMarker() local
360 int32_t length=*p32; in isNoInheritanceMarker()
361 const UChar *p=(const UChar *)p32; in isNoInheritanceMarker()
391 const int32_t *p32= offset==0 ? &gEmptyString.length : pResData->pRoot+offset; in res_getAlias() local
392 length=*p32++; in res_getAlias()
393 p=(const UChar *)p32; in res_getAlias()
410 const int32_t *p32= offset==0 ? (const int32_t*)&gEmpty32 : pResData->pRoot+offset; in res_getBinary() local
[all …]
Dutrie.cpp1008 uint32_t *p32; in utrie_unserializeDummy() local
1023 trie->data32=p32=(uint32_t *)(p16+trie->indexLength); in utrie_unserializeDummy()
1027 p32[i]=initialValue; in utrie_unserializeDummy()
1034 p32[i]=leadUnitValue; in utrie_unserializeDummy()
/external/opencv3/modules/cudaoptflow/src/
Dtvl1flow.cpp64 … PtrStepSzf p11, PtrStepSzf p12, PtrStepSzf p21, PtrStepSzf p22, PtrStepSzf p31, PtrStepSzf p32,
69 … PtrStepSzf p11, PtrStepSzf p12, PtrStepSzf p21, PtrStepSzf p22, PtrStepSzf p31, PtrStepSzf p32,
323 GpuMat p31, p32; in procOneScale() local
327 p32 = p32_buf(Rect(0, 0, I0.cols, I0.rows)); in procOneScale()
336 p32.setTo(Scalar::all(0), _stream); in procOneScale()
354 …estimateU(I1wx, I1wy, grad, rho_c, p11, p12, p21, p22, p31, p32, u1, u2, u3, diff, l_t, static_cas… in procOneScale()
367 … estimateDualVariables(u1, u2, u3, p11, p12, p21, p22, p31, p32, taut, gamma_, stream); in procOneScale()
/external/strace/
Dexecve.c40 unsigned int p32; in printargv() member
53 cp.p64 = cp.p32; in printargv()
/external/lz4/lib/
Dxxhash.c611 const U32* p32 = state->mem32; in XXH32_update_endian() local
612 state->v1 += XXH_readLE32(p32, endian) * PRIME32_2; in XXH32_update_endian()
615 p32++; in XXH32_update_endian()
616 state->v2 += XXH_readLE32(p32, endian) * PRIME32_2; in XXH32_update_endian()
619 p32++; in XXH32_update_endian()
620 state->v3 += XXH_readLE32(p32, endian) * PRIME32_2; in XXH32_update_endian()
623 p32++; in XXH32_update_endian()
624 state->v4 += XXH_readLE32(p32, endian) * PRIME32_2; in XXH32_update_endian()
627 p32++; in XXH32_update_endian()
/external/boringssl/src/crypto/ec/
Dp256-x86_64.c150 BN_ULONG p32[P256_LIMBS]; in ecp_nistz256_mod_inverse() local
177 ecp_nistz256_mul_mont(p32, res, p16); /* ffffffff*p */ in ecp_nistz256_mod_inverse()
179 ecp_nistz256_sqr_mont(res, p32); in ecp_nistz256_mod_inverse()
188 ecp_nistz256_mul_mont(res, res, p32); in ecp_nistz256_mod_inverse()
193 ecp_nistz256_mul_mont(res, res, p32); in ecp_nistz256_mod_inverse()
/external/clang/test/Sema/
Dattr-print.c17 int * __ptr32 p32; variable
/external/flac/libFLAC/include/private/
Dmd5.h34 FLAC__int32 *p32; member
/external/llvm/test/CodeGen/SPARC/
D32abi.ll31 %p32 = bitcast i8* %a4 to i32*
32 store i32 %a3, i32* %p32
35 store i32 %a5, i32* %p32
36 store i32 %a6, i32* %p32
D64abi.ll30 %p32 = bitcast i8* %a4 to i32*
31 store i32 %a3, i32* %p32
34 store i32 %a5, i32* %p32
35 store i32 %a6, i32* %p32
/external/llvm/test/Analysis/Lint/
Daddress-spaces.ll3 target datalayout = "p32:32:32-p1:16:16:16-n16:32"
/external/mesa3d/src/gallium/auxiliary/util/
Ddbghelp.h227 static __inline void KdHelp32To64(PKDHELP p32,PKDHELP64 p64) { in KdHelp32To64() argument
228 p64->Thread = p32->Thread; in KdHelp32To64()
229 p64->ThCallbackStack = p32->ThCallbackStack; in KdHelp32To64()
230 p64->NextCallback = p32->NextCallback; in KdHelp32To64()
231 p64->FramePointer = p32->FramePointer; in KdHelp32To64()
232 p64->KiCallUserMode = p32->KiCallUserMode; in KdHelp32To64()
233 p64->KeUserCallbackDispatcher = p32->KeUserCallbackDispatcher; in KdHelp32To64()
234 p64->SystemRangeStart = p32->SystemRangeStart; in KdHelp32To64()
/external/iproute2/tc/
Dq_netem.c264 set_percent(&gimodel.p32, 0); in netem_parse_opt()
280 if (get_percent(&gimodel.p32, *argv)) { in netem_parse_opt()
626 fprintf(f, " p32 %s", sprint_percent(gimodel->p32, b1)); in netem_print_opt()
/external/opencv3/modules/video/src/
Dtvl1flow.cpp1100 mutable Mat_<float> p32; member
1121 float* p32Row = p32[y]; in operator ()()
1148 Mat_<float>& p31, Mat_<float>& p32, in estimateDualVariables() argument
1161 CV_DbgAssert( p32.size() == u1x.size() ); in estimateDualVariables()
1176 body.p32 = p32; in estimateDualVariables()
1303 Mat_<float> p32 = dm.p32_buf(Rect(0, 0, I0.cols, I0.rows)); in procOneScale() local
1310 if (use_gamma) p32.setTo(Scalar::all(0)); in procOneScale()
1351 if (use_gamma) divergence(p31, p32, div_p3); in procOneScale()
1362 …estimateDualVariables(u1x, u1y, u2x, u2y, u3x, u3y, p11, p12, p21, p22, p31, p32, taut, use_gamma); in procOneScale()
/external/ltrace/sysdeps/linux-gnu/
Dproc.c283 select_32_64(struct process *proc, void *p32, void *p64) in select_32_64() argument
286 return p32; in select_32_64()
/external/llvm/test/CodeGen/Mips/msa/
Dspill.ll40 %p32 = getelementptr <16 x i8>, <16 x i8>* %p0, i32 32
74 %32 = load <16 x i8>, <16 x i8>* %p32, align 16
189 %p32 = getelementptr <8 x i16>, <8 x i16>* %p0, i32 32
223 %32 = load <8 x i16>, <8 x i16>* %p32, align 16
338 %p32 = getelementptr <4 x i32>, <4 x i32>* %p0, i32 32
372 %32 = load <4 x i32>, <4 x i32>* %p32, align 16
487 %p32 = getelementptr <2 x i64>, <2 x i64>* %p0, i32 32
521 %32 = load <2 x i64>, <2 x i64>* %p32, align 16

12