/third_party/skia/src/gpu/ |
H A D | GrProgramDesc.h | 42 uint32_t excess = fBitsUsed - 32; in addBits() local 43 fCurValue = excess ? (val >> (numBits - excess)) : 0; in addBits() 44 fBitsUsed = excess; in addBits()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfscp.c | 432 s64 excess; in merge_run() local 440 excess = alctx->gathered_clusters + count in merge_run() 444 replace = excess > (alctx->rl[0].length in merge_run() 448 replace = (excess > alctx->rl[0].length) in merge_run() 455 excess = alctx->gathered_clusters + count in merge_run() 459 && (alctx->rl[drop].length <= excess)) { in merge_run() 460 excess -= alctx->rl[drop].length; in merge_run() 478 alctx->gathered_clusters = alctx->wanted_clusters + excess; in merge_run()
|
/third_party/node/deps/v8/src/bigint/ |
H A D | tostring.cc | 233 int excess = 0; in Finish() 236 excess = static_cast<int>(out_ - out_start_); in Finish() 239 return excess; in Finish() 576 int excess = formatter.Finish(); 577 *out_length -= excess;
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_state_fs_linear_llvm.c | 435 /* excess = width & 0x3 */ in llvmpipe_fs_variant_linear_llvm() 436 LLVMValueRef excess = in llvmpipe_fs_variant_linear_llvm() local 467 lp_build_if(&ifstate, gallivm, LLVMBuildICmp(builder, LLVMIntNE, excess, in llvmpipe_fs_variant_linear_llvm() 492 lp_build_loop_end_cond(&loop_read, excess, in llvmpipe_fs_variant_linear_llvm() 513 lp_build_loop_end_cond(&loop_write, excess, in llvmpipe_fs_variant_linear_llvm()
|
/third_party/jerryscript/tools/runners/ |
H A D | run-benchmarks.sh | 49 run ubench/function-excess-args
|
/third_party/mesa3d/src/panfrost/bifrost/ |
H A D | bi_ra.c | 233 unsigned excess = count - 1; in bi_make_affinity() local 234 uint64_t mask = BITFIELD_MASK(excess); in bi_make_affinity() 235 clobbered |= mask << (64 - excess); in bi_make_affinity() 238 clobbered |= mask << (16 - excess); in bi_make_affinity()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-arabic.cc | 542 hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; in apply_stch() local 543 if (excess > 0) in apply_stch() 544 extra_repeat_overlap = excess / (n_copies * n_repeating); in apply_stch()
|
/third_party/node/test/fixtures/wpt/WebCryptoAPI/sign_verify/ |
H A D | ecdsa_vectors.js | 109 vector.name = `${vector.name} - Signature has excess padding`;
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fNegativeStateApiTests.cpp | 552 for (int excess = 0; excess <= 2; excess++) in init() 556 invalidUniformIndices.push_back(numActiveUniforms-1+excess); in init() 561 expectError(excess == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in init()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fNegativeStateApiTests.cpp | 873 for (int excess = 0; excess <= 2; excess++) in get_active_uniformsiv() 877 invalidUniformIndices.push_back(numActiveUniforms-1+excess); in get_active_uniformsiv() 882 ctx.expectError(excess == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in get_active_uniformsiv()
|
/third_party/python/Objects/ |
H A D | obmalloc.c | 1582 uint excess; /* number of bytes above pool alignment */ in new_arena() local 1670 excess = (uint)(arenaobj->address & POOL_SIZE_MASK); in new_arena() 1671 if (excess != 0) { in new_arena() 1673 arenaobj->pool_address += POOL_SIZE - excess; in new_arena()
|
/third_party/python/Lib/email/ |
H A D | _header_value_parser.py | 2914 excess = len(encoded_word) - remaining_space 2915 while excess > 0: 2920 excess = len(encoded_word) - remaining_space
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | evaluate.c | 2406 static void excess(struct expression *e, const char *s) in excess() function 2618 excess(e, class & TYPE_PTR ? "array" : in handle_list_initializer() 2675 excess(e, lclass & TYPE_PTR ? "array" : "struct or union"); in handle_list_initializer()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 4316 unsigned excess = const_offset - (const_offset % const_offset_range); 4317 offset = bld.vadd32(bld.def(v1), offset, Operand::c32(excess)); 4318 const_offset -= excess;
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 29138 sqlite3_int64 excess; sqlite3_soft_heap_limit64() local [all...] |