Home
last modified time | relevance | path

Searched refs:x_int (Results 1 – 8 of 8) sorted by relevance

/external/pigweed/pw_assert/
Dassert_backend_compile_test_c.c91 int x_int = 50; in AssertBackendCompileTestsInC() local
94 PW_CHECK_INT_LE(x_int, y_int); in AssertBackendCompileTestsInC()
95 PW_CHECK_INT_LE(x_int, y_int, "INT: " FAIL_IF_DISPLAYED); in AssertBackendCompileTestsInC()
96 PW_CHECK_INT_LE(x_int, y_int, "INT: " FAIL_IF_DISPLAYED_ARGS, z); in AssertBackendCompileTestsInC()
98 PW_CHECK_INT_GE(x_int, y_int); in AssertBackendCompileTestsInC()
99 PW_CHECK_INT_GE(x_int, y_int, "INT: " FAIL_IF_HIDDEN); in AssertBackendCompileTestsInC()
100 PW_CHECK_INT_GE(x_int, y_int, "INT: " FAIL_IF_HIDDEN_ARGS, z); in AssertBackendCompileTestsInC()
161 int x_int = 50; in AssertBackendCompileTestsInC() local
165 PW_CHECK_INT_LE(x_int, Add3(1, 2, 3)); in AssertBackendCompileTestsInC()
168 PW_CHECK_INT_LE(x_int, Add3(1, 2, 3), FAIL_IF_DISPLAYED_ARGS, z); in AssertBackendCompileTestsInC()
[all …]
Dassert_backend_compile_test.cc92 int x_int = 50; in TEST() local
95 PW_CHECK_INT_LE(x_int, y_int); in TEST()
96 PW_CHECK_INT_LE(x_int, y_int, "INT: " FAIL_IF_DISPLAYED); in TEST()
97 PW_CHECK_INT_LE(x_int, y_int, "INT: " FAIL_IF_DISPLAYED_ARGS, z); in TEST()
99 PW_CHECK_INT_GE(x_int, y_int); in TEST()
100 PW_CHECK_INT_GE(x_int, y_int, "INT: " FAIL_IF_HIDDEN); in TEST()
101 PW_CHECK_INT_GE(x_int, y_int, "INT: " FAIL_IF_HIDDEN_ARGS, z); in TEST()
161 int x_int = 50; in TEST() local
165 PW_CHECK_INT_LE(x_int, Add3(1, 2, 3)); in TEST()
168 PW_CHECK_INT_LE(x_int, Add3(1, 2, 3), FAIL_IF_DISPLAYED_ARGS, z); in TEST()
[all …]
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Dos_specific_inline.h22 long int x_int; in WebRtcIsac_lrint() local
26 fistp x_int in WebRtcIsac_lrint()
30 return x_int; in WebRtcIsac_lrint()
35 long int x_int; in WebRtcIsac_lrint() local
36 x_int = (long int)floor(x_dbl + 0.499999999999); in WebRtcIsac_lrint()
37 return x_int; in WebRtcIsac_lrint()
/external/llvm-project/clang/test/SemaCXX/
Dext-int.cpp109 int x_int = 1, y_int = 1; in Ops() local
136 x43_s + x_int; in Ops()
138 x43_u - x_int; in Ops()
140 x32_s * x_int; in Ops() local
142 x32_u / x_int; in Ops()
148 x4_s + x_int; in Ops()
150 x4_u - x_int; in Ops()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
DIssue2035Test.java81 String x_int = "" + in test_int() local
96 provider(x_int) in test_int()
/external/aac/libSBRdec/src/
DHFgen_preFlat.cpp801 const int x_int, int *out_sf) { in polyval() argument
802 FDK_ASSERT(x_int <= 31); /* otherwise getLog2[] needs more elements */ in polyval()
810 if (x_int != 0) { in polyval()
811 x_sf = getLog2[x_int]; in polyval()
812 x = (FIXP_DBL)x_int << (DFRACT_BITS - 1 - x_sf); in polyval()
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Dlegacy_learning_rate_decay_test.py105 x_int = variables.Variable(0, dtype=dtypes.int32)
109 x_int, boundaries, values)
/external/tensorflow/tensorflow/python/framework/
Dops_test.py342 x_int = constant_op.constant(0)
351 _ = x_int & x_bool
353 _ = x_int & constant_op.constant("a")
356 _ = x_bool & x_int
383 x_int = constant_op.constant(0)
392 _ = x_int | x_bool
394 _ = x_int | constant_op.constant("a")
397 _ = x_bool | x_int
424 x_int = constant_op.constant(0)
433 _ = x_int ^ x_bool
[all …]