Searched refs:too_small (Results 1 – 10 of 10) sorted by relevance
/external/libcups/cups/ |
D | hash.c | 63 goto too_small; in cupsHashData() 80 goto too_small; in cupsHashData() 93 goto too_small; in cupsHashData() 106 goto too_small; in cupsHashData() 119 goto too_small; in cupsHashData() 132 goto too_small; in cupsHashData() 151 goto too_small; in cupsHashData() 172 goto too_small; in cupsHashData() 199 goto too_small; in cupsHashData() 237 goto too_small; in cupsHashData() [all …]
|
/external/rust/crates/byteorder/src/ |
D | lib.rs | 3017 macro_rules! too_small { macro 3098 too_small!(small_u16, 1, 0, read_u16, write_u16); 3099 too_small!(small_i16, 1, 0, read_i16, write_i16); 3100 too_small!(small_u32, 3, 0, read_u32, write_u32); 3101 too_small!(small_i32, 3, 0, read_i32, write_i32); 3102 too_small!(small_u64, 7, 0, read_u64, write_u64); 3103 too_small!(small_i64, 7, 0, read_i64, write_i64); 3104 too_small!(small_f32, 3, 0.0, read_f32, write_f32); 3105 too_small!(small_f64, 7, 0.0, read_f64, write_f64); 3106 too_small!(small_u128, 15, 0, read_u128, write_u128); [all …]
|
/external/igt-gpu-tools/tests/ |
D | kms_prop_blob.c | 126 char too_small[32]; in test_validate() local 129 memset(too_small, 0, sizeof(too_small)); in test_validate() 133 create.data = (uintptr_t) &too_small; in test_validate() 144 get.length = sizeof(too_small); in test_validate() 145 get.data = (uintptr_t) too_small; in test_validate()
|
/external/rust/crates/grpcio-sys/grpc/third_party/upb/tests/bindings/lua/ |
D | test_upb.lua | 386 too_small = -1, 392 too_small = -1, 398 too_small = -2^31 - 1, 406 too_small = -2^31 - 1, 412 too_small = -2^64, 546 if vals.too_small then 547 assert_error_match(errmsg, function() array[3] = vals.too_small end) 595 if key_vals.too_small then 596 assert_error_match(errmsg, function() map[key_vals.too_small] = 1 end) 605 if val_vals.too_small then [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | softplus_op.h | 51 auto too_small = features < features.constant(threshold); in operator() local 55 too_small.select(features_exp, // softplus(x) ~= exp(x) for x small in operator()
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | unary_ops.cc | 105 xla::XlaOp too_small = Lt(features, threshold); in Softplus() local 109 Select(too_small, features_exp, Log1p(features_exp))); in Softplus()
|
/external/rust/crates/ring/src/ |
D | error.rs | 178 pub(crate) fn too_small() -> Self { in too_small() method
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_clear.c | 441 bool too_small = tex->buffer.b.b.nr_samples <= 1 && in si_do_fast_color_clear() local 449 if (sctx->family == CHIP_STONEY && !too_small) { in si_do_fast_color_clear() 473 if (eliminate_needed && too_small) in si_do_fast_color_clear() 494 if (too_small) in si_do_fast_color_clear()
|
/external/rust/crates/ring/src/rsa/ |
D | verification.rs | 65 return Err(error::KeyRejected::too_small()); in from_modulus_and_exponent()
|
/external/rust/crates/ring/src/arithmetic/ |
D | bigint.rs | 698 return Err(error::KeyRejected::too_small()); in from_be_bytes()
|