Searched refs:u32 (Results 1 – 8 of 8) sorted by relevance
/php-src/ext/dom/lexbor/lexbor/core/ |
H A D | dtoa.c | 242 uint32_t u32; in lexbor_write_exponent() local 261 u32 = exp; in lexbor_write_exponent() 265 *--p = u32 % 10 + '0'; in lexbor_write_exponent() 266 u32 /= 10; in lexbor_write_exponent() 268 while (u32 != 0); in lexbor_write_exponent()
|
/php-src/ext/opcache/jit/ir/ |
H A D | ir_fold.h | 292 IR_FOLD_CONST_U(op1_insn->val.u32 + op2_insn->val.u32); in IR_FOLD() 362 IR_FOLD_CONST_U(op1_insn->val.u32 - op2_insn->val.u32); in IR_FOLD() 432 IR_FOLD_CONST_U(op1_insn->val.u32 * op2_insn->val.u32); in IR_FOLD() 832 IR_FOLD_CONST_U(op1_insn->val.u32 ^ op2_insn->val.u32); in IR_FOLD() 881 IR_FOLD_CONST_U(op1_insn->val.u32 << op2_insn->val.u32); in IR_FOLD() 925 IR_FOLD_CONST_U(op1_insn->val.u32 >> op2_insn->val.u32); in IR_FOLD() 931 IR_FOLD_CONST_U((int32_t)(op1_insn->val.u32 >> op2_insn->val.u32)); in IR_FOLD() 1013 IR_FOLD_CONST_U(ir_rol32(op1_insn->val.u32, op2_insn->val.u32)); in IR_FOLD() 1019 IR_FOLD_CONST_I((int32_t)ir_rol32(op1_insn->val.u32, op2_insn->val.u32)); in IR_FOLD() 1057 IR_FOLD_CONST_U(ir_ror32(op1_insn->val.u32, op2_insn->val.u32)); in IR_FOLD() [all …]
|
H A D | ir.h | 130 _(U32, uint32_t, u32, IR_TYPE_UNSIGNED) \ 416 uint32_t u32;
|
H A D | ir_sccp.c | 1064 new_val.u64 = (uint64_t)val_insn->val.u32; in ir_ext_const() 1386 && ctx->ir_base[ref].val.u32 == 0; in ir_is_zero()
|
H A D | ir_aarch64.dasc | 1321 if (type == IR_FLOAT && insn->val.u32 == 0) { 6187 |.long insn->val.u32, insn->val.u32_hi 6192 |.long insn->val.u32
|
H A D | ir.c | 149 fprintf(f, "%u", insn->val.u32);
|
H A D | ir_x86.dasc | 61 #define IR_IS_FP_ZERO(insn) ((insn.type == IR_DOUBLE) ? (insn.val.u64 == 0) : (insn.val.u32… 3017 if (type == IR_FLOAT && insn->val.u32 == 0) { 10731 |.dword insn->val.u32, insn->val.u32_hi 10736 |.dword insn->val.u32
|
/php-src/ext/hash/xxhash/ |
H A D | xxhash.h | 1704 typedef union { xxh_u32 u32; } __attribute__((packed)) unalign; member 1708 typedef union { xxh_u32 u32; } __attribute__((packed)) xxh_unalign; in XXH_read32() member 1709 return ((const xxh_unalign*)ptr)->u32; in XXH_read32() 2347 typedef union { xxh_u32 u32; xxh_u64 u64; } __attribute__((packed)) unalign64; member 2351 typedef union { xxh_u32 u32; xxh_u64 u64; } __attribute__((packed)) xxh_unalign64; in XXH_read64() member
|
Completed in 82 milliseconds