Searched refs:dest32 (Results 1 – 3 of 3) sorted by relevance
/external/elfutils/libelf/ |
D | gnuhash_xlate.h | 41 Elf32_Word *dest32 = dest; in elf_cvt_gnuhash() local 49 dest32[cnt] = bswap_32 (src32[cnt]); in elf_cvt_gnuhash() 53 Elf32_Word bitmask_words = encode ? src32[2] : dest32[2]; in elf_cvt_gnuhash() 56 Elf64_Xword *dest64 = (Elf64_Xword *) &dest32[4]; in elf_cvt_gnuhash() 68 dest32 = (Elf32_Word *) &dest64[bitmask_words]; in elf_cvt_gnuhash() 71 *dest32++ = bswap_32 (*src32++); in elf_cvt_gnuhash()
|
/external/icu/icu4c/source/test/cintltst/ |
D | custrtrn.c | 2004 UChar32 dest32[4]={ 3, 3, 3, 3 }; in TestNullEmptySource() local 2080 dest32[0]=3; in TestNullEmptySource() 2083 u_strToUTF32(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, &errorCode); in TestNullEmptySource() 2084 if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) { in TestNullEmptySource() 2088 dest32[0]=3; in TestNullEmptySource() 2091 u_strToUTF32WithSub(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, 0xfffd, NULL, &errorCode); in TestNullEmptySource() 2092 if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) { in TestNullEmptySource()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | Context.cpp | 2445 unsigned int *dest32 = (unsigned int*)dest; in readPixels() local 2459 dest32[i] = (argb & 0xFF00FF00) | ((argb & 0x000000FF) << 16) | ((argb & 0x00FF0000) >> 16); in readPixels() 2469 …dest32[i] = (xrgb & 0xFF00FF00) | ((xrgb & 0x000000FF) << 16) | ((xrgb & 0x00FF0000) >> 16) | 0xFF… in readPixels() 2479 dest32[i] = xrgb | 0xFF000000; in readPixels()
|