/external/mesa3d/src/gallium/drivers/r600/ |
D | r700_asm.c | 81 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1) in r700_bytecode_alu_read() argument 84 alu->src[0].sel = G_SQ_ALU_WORD0_SRC0_SEL(word0); in r700_bytecode_alu_read() 85 alu->src[0].rel = G_SQ_ALU_WORD0_SRC0_REL(word0); in r700_bytecode_alu_read() 86 alu->src[0].chan = G_SQ_ALU_WORD0_SRC0_CHAN(word0); in r700_bytecode_alu_read() 87 alu->src[0].neg = G_SQ_ALU_WORD0_SRC0_NEG(word0); in r700_bytecode_alu_read() 88 alu->src[1].sel = G_SQ_ALU_WORD0_SRC1_SEL(word0); in r700_bytecode_alu_read() 89 alu->src[1].rel = G_SQ_ALU_WORD0_SRC1_REL(word0); in r700_bytecode_alu_read() 90 alu->src[1].chan = G_SQ_ALU_WORD0_SRC1_CHAN(word0); in r700_bytecode_alu_read() 91 alu->src[1].neg = G_SQ_ALU_WORD0_SRC1_NEG(word0); in r700_bytecode_alu_read() 92 alu->index_mode = G_SQ_ALU_WORD0_INDEX_MODE(word0); in r700_bytecode_alu_read() [all …]
|
D | r600_asm.h | 328 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1); 342 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1); 347 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1); 349 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1);
|
D | eg_asm.c | 156 struct r600_bytecode_output *output, uint32_t word0, uint32_t word1) 158 output->array_base = G_SQ_CF_ALLOC_EXPORT_WORD0_ARRAY_BASE(word0); 159 output->type = G_SQ_CF_ALLOC_EXPORT_WORD0_TYPE(word0); 160 output->gpr = G_SQ_CF_ALLOC_EXPORT_WORD0_RW_GPR(word0); 161 output->elem_size = G_SQ_CF_ALLOC_EXPORT_WORD0_ELEM_SIZE(word0);
|
D | r600_asm.c | 2796 struct r600_bytecode_alu *alu, uint32_t word0, uint32_t word1) in r600_bytecode_alu_read() argument 2799 alu->src[0].sel = G_SQ_ALU_WORD0_SRC0_SEL(word0); in r600_bytecode_alu_read() 2800 alu->src[0].rel = G_SQ_ALU_WORD0_SRC0_REL(word0); in r600_bytecode_alu_read() 2801 alu->src[0].chan = G_SQ_ALU_WORD0_SRC0_CHAN(word0); in r600_bytecode_alu_read() 2802 alu->src[0].neg = G_SQ_ALU_WORD0_SRC0_NEG(word0); in r600_bytecode_alu_read() 2803 alu->src[1].sel = G_SQ_ALU_WORD0_SRC1_SEL(word0); in r600_bytecode_alu_read() 2804 alu->src[1].rel = G_SQ_ALU_WORD0_SRC1_REL(word0); in r600_bytecode_alu_read() 2805 alu->src[1].chan = G_SQ_ALU_WORD0_SRC1_CHAN(word0); in r600_bytecode_alu_read() 2806 alu->src[1].neg = G_SQ_ALU_WORD0_SRC1_NEG(word0); in r600_bytecode_alu_read() 2807 alu->index_mode = G_SQ_ALU_WORD0_INDEX_MODE(word0); in r600_bytecode_alu_read() [all …]
|
/external/python/cpython3/Python/ |
D | dtoa.c | 186 #define word0(x) (x)->L[1] macro 189 #define word0(x) (x)->L[0] macro 938 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1; in ulp() 939 word0(&u) = L; in ulp() 962 word0(&d) = Exp_1 | y >> (Ebits - k); in b2d() 969 word0(&d) = Exp_1 | y << k | z >> (32 - k); in b2d() 974 word0(&d) = Exp_1 | y; in b2d() 1014 b->x[1] = word0(d) & Frac_mask; in sd2b() 1015 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift); in sd2b() 1073 z = word0(d) & Frac_mask; in d2b() [all …]
|
/external/python/cpython2/Python/ |
D | dtoa.c | 191 #define word0(x) (x)->L[1] macro 194 #define word0(x) (x)->L[0] macro 1008 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1; in ulp() 1009 word0(&u) = L; in ulp() 1032 word0(&d) = Exp_1 | y >> (Ebits - k); in b2d() 1039 word0(&d) = Exp_1 | y << k | z >> (32 - k); in b2d() 1044 word0(&d) = Exp_1 | y; in b2d() 1084 b->x[1] = word0(d) & Frac_mask; in sd2b() 1085 *e = Etiny - 1 + (int)((word0(d) & Exp_mask) >> Exp_shift); in sd2b() 1143 z = word0(d) & Frac_mask; in d2b() [all …]
|
/external/llvm-project/libc/AOR_v20.02/math/test/rtest/ |
D | main.c | 98 void get_operand(const char *str, Testable *f, uint32 *word0, uint32 *word1) in get_operand() argument 122 *word0 = specials[i].dblword0; in get_operand() 125 *word0 = specials[i].sglword; in get_operand() 129 *word0 |= 0x80000000U; in get_operand() 134 sscanf(str, "%"I32"x.%"I32"x", word0, word1); in get_operand()
|
/external/arm-optimized-routines/math/test/rtest/ |
D | main.c | 97 void get_operand(const char *str, Testable *f, uint32 *word0, uint32 *word1) in get_operand() argument 121 *word0 = specials[i].dblword0; in get_operand() 124 *word0 = specials[i].sglword; in get_operand() 128 *word0 |= 0x80000000U; in get_operand() 133 sscanf(str, "%"I32"x.%"I32"x", word0, word1); in get_operand()
|
/external/icu/icu4c/source/common/ |
D | ucnv_ext.cpp | 40 uint32_t word0, word; in ucnv_extFindToU() local 56 word0=UCNV_EXT_TO_U_MAKE_WORD(byte, 0); in ucnv_extFindToU() 66 word=word0|UCNV_EXT_TO_U_VALUE_MASK; in ucnv_extFindToU() 80 if(word0<=toUSection[start]) { in ucnv_extFindToU() 83 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU() 86 if(++start<limit && word0<=toUSection[start]) { in ucnv_extFindToU()
|
/external/kernel-headers/original/uapi/linux/ |
D | romfs_fs.h | 26 __be32 word0; member
|
/external/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | codegen.h | 352 unsigned word0 : 32; member
|
D | disasm.c | 720 if (branch->discard.word0 == PPIR_CODEGEN_DISCARD_WORD0 && in print_branch()
|
D | codegen.c | 579 b->discard.word0 = PPIR_CODEGEN_DISCARD_WORD0; in ppir_codegen_encode_discard()
|
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetMBCS.java | 1532 long word0, word; in findToU() local 1550 word0 = TO_U_MAKE_WORD((byte) byt, 0) & UConverterConstants.UNSIGNED_INT_MASK; in findToU() 1558 word = word0 | TO_U_VALUE_MASK; in findToU() 1572 …if (word0 <= (toUSection.get(toUSection.position() + start) & UConverterConstants.UNSIGNED_INT_MAS… in findToU() 1576 …&& word0 <= (toUSection.get(toUSection.position() + start) & UConverterConstants.UNSIGNED_INT_MASK… in findToU() 1580 …&& word0 <= (toUSection.get(toUSection.position() + start) & UConverterConstants.UNSIGNED_INT_MASK… in findToU()
|