Home
last modified time | relevance | path

Searched refs:word0 (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/cld/encodings/compact_lang_det/
Dcldutil.cc100 uint32 word0, word1; in BiHashV25() local
102 word0 = UnalignedLoad32(word_ptr) & kWordMask0[bytecount & 3]; in BiHashV25()
103 word0 = word0 ^ (word0 >> 3); in BiHashV25()
104 return word0; in BiHashV25()
107 word0 = UnalignedLoad32(word_ptr); in BiHashV25()
108 word0 = word0 ^ (word0 >> 3); in BiHashV25()
111 return word0 + word1; in BiHashV25()
157 uint32 word0, word1, word2; in QuadHashV25Mix() local
159 word0 = UnalignedLoad32(word_ptr) & kWordMask0[bytecount & 3]; in QuadHashV25Mix()
160 word0 = word0 ^ (word0 >> 3); in QuadHashV25Mix()
[all …]
/external/chromium_org/base/third_party/dmg_fp/
Ddtoa.cc307 #define word0(x) (x)->L[1] macro
310 #define word0(x) (x)->L[0] macro
1172 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
1181 word0(&u) = L;
1189 word0(&u) = 0x80000 >> L;
1193 word0(&u) = 0;
1217 #define d0 word0(&d)
1264 word0(&d) = d0 >> 16 | d0 << 16;
1289 d0 = word0(d) >> 16 | word0(d) << 16;
1292 #define d0 word0(d)
[all …]
Dmsvc_warnings.patch251 i = (int)(word0(&u) >> Exp_shift1 & (Exp_mask>>Exp_shift1));
253 - if ((i = (int)(word0(&u) >> Exp_shift1 & (Exp_mask>>Exp_shift1)))) {
258 word0(&d2) &= Frac_mask1;
/external/openssl/crypto/rc2/
Drrc2.doc106 word0 = ( word0 + ( word1 & ~word3 ) + ( word2 & word3 ) + S[ j+0 ] ) <<< 1
107 word1 = ( word1 + ( word2 & ~word0 ) + ( word3 & word0 ) + S[ j+1 ] ) <<< 2
108 word2 = ( word2 + ( word3 & ~word1 ) + ( word0 & word1 ) + S[ j+2 ] ) <<< 3
109 word3 = ( word3 + ( word0 & ~word2 ) + ( word1 & word2 ) + S[ j+3 ] ) <<< 5
115 word0 = word0 + S[ word3 & 63 ];
116 word1 = word1 + S[ word0 & 63 ];
129 word3 = ( word3 >>> 5 ) - ( word0 & ~word2 ) - ( word1 & word2 ) - S[ j+3 ]
130 word2 = ( word2 >>> 3 ) - ( word3 & ~word1 ) - ( word0 & word1 ) - S[ j+2 ]
131 word1 = ( word1 >>> 2 ) - ( word2 & ~word0 ) - ( word3 & word0 ) - S[ j+1 ]
132 word0 = ( word0 >>> 1 ) - ( word1 & ~word3 ) - ( word2 & word3 ) - S[ j+0 ]
[all …]
/external/ltrace/sysdeps/linux-gnu/ia64/
Dtrace.c51 } word0; member
101 unsigned long bot = 0UL | bundle.bitmap.word0.bot_slot1; in syscall_p()
111 insn = bundle.bitmap.word0.slot0; in syscall_p()
/external/chromium_org/third_party/WebKit/Source/wtf/
Ddtoa.cpp59 #define word0(x) (x)->L[0] macro
62 #define word0(x) (x)->L[1] macro
553 #define d0 word0(d) in d2b()
757 ASSERT((word0(&u) & Exp_mask) != Exp_mask); in dtoa()
769 if (word0(&u) & Sign_bit) { in dtoa()
771 word0(&u) &= ~Sign_bit; // clear sign bit in dtoa()
776 if ((i = (int)(word0(&u) >> Exp_shift1 & (Exp_mask >> Exp_shift1)))) { in dtoa()
778 word0(&d2) &= Frac_mask1; in dtoa()
779 word0(&d2) |= Exp_11; in dtoa()
809 x = (i > 32) ? (word0(&u) << (64 - i)) | (word1(&u) >> (i - 32)) in dtoa()
[all …]
/external/chromium_org/third_party/icu/source/common/
Ducnv_ext.cpp37 uint32_t word0, word; in ucnv_extFindToU() local
53 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0); in ucnv_extFindToU()
63 word=word0|UCNV_EXT_TO_U_VALUE_MASK; in ucnv_extFindToU()
77 if(word0<=toUSection[start]) { in ucnv_extFindToU()
80 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU()
83 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU()
/external/icu/icu4c/source/common/
Ducnv_ext.cpp37 uint32_t word0, word; in ucnv_extFindToU() local
53 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0); in ucnv_extFindToU()
63 word=word0|UCNV_EXT_TO_U_VALUE_MASK; in ucnv_extFindToU()
77 if(word0<=toUSection[start]) { in ucnv_extFindToU()
80 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU()
83 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU()
/external/kernel-headers/original/uapi/linux/
Dromfs_fs.h25 __be32 word0; member
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
Dr600_shader.c478 uint32_t word0 = i32_from_byte_stream(bytes, &bytes_read); in r600_vtx_from_byte_stream() local
485 vtx.inst = G_SQ_VTX_WORD0_VTX_INST(word0); in r600_vtx_from_byte_stream()
486 vtx.fetch_type = G_SQ_VTX_WORD0_FETCH_TYPE(word0); in r600_vtx_from_byte_stream()
487 vtx.buffer_id = G_SQ_VTX_WORD0_BUFFER_ID(word0); in r600_vtx_from_byte_stream()
488 vtx.src_gpr = G_SQ_VTX_WORD0_SRC_GPR(word0); in r600_vtx_from_byte_stream()
489 vtx.src_sel_x = G_SQ_VTX_WORD0_SRC_SEL_X(word0); in r600_vtx_from_byte_stream()
490 vtx.mega_fetch_count = G_SQ_VTX_WORD0_MEGA_FETCH_COUNT(word0); in r600_vtx_from_byte_stream()
/external/mesa3d/src/gallium/drivers/r600/
Dr600_shader.c478 uint32_t word0 = i32_from_byte_stream(bytes, &bytes_read); in r600_vtx_from_byte_stream() local
485 vtx.inst = G_SQ_VTX_WORD0_VTX_INST(word0); in r600_vtx_from_byte_stream()
486 vtx.fetch_type = G_SQ_VTX_WORD0_FETCH_TYPE(word0); in r600_vtx_from_byte_stream()
487 vtx.buffer_id = G_SQ_VTX_WORD0_BUFFER_ID(word0); in r600_vtx_from_byte_stream()
488 vtx.src_gpr = G_SQ_VTX_WORD0_SRC_GPR(word0); in r600_vtx_from_byte_stream()
489 vtx.src_sel_x = G_SQ_VTX_WORD0_SRC_SEL_X(word0); in r600_vtx_from_byte_stream()
490 vtx.mega_fetch_count = G_SQ_VTX_WORD0_MEGA_FETCH_COUNT(word0); in r600_vtx_from_byte_stream()