/external/python/cpython3/Objects/ |
D | rangeobject.c | 155 int cmp_result; in compute_range_length() local 161 cmp_result = PyObject_RichCompareBool(step, _PyLong_Zero, Py_GT); in compute_range_length() 162 if (cmp_result == -1) in compute_range_length() 165 if (cmp_result == 1) { in compute_range_length() 178 cmp_result = PyObject_RichCompareBool(lo, hi, Py_GE); in compute_range_length() 179 if (cmp_result != 0) { in compute_range_length() 181 if (cmp_result < 0) in compute_range_length() 236 int cmp_result; in compute_range_item() local 246 cmp_result = PyObject_RichCompareBool(arg, _PyLong_Zero, Py_LT); in compute_range_item() 247 if (cmp_result == -1) { in compute_range_item() [all …]
|
D | sliceobject.c | 377 int step_is_negative, cmp_result; in _PySlice_GetLongIndices() local 434 cmp_result = PyObject_RichCompareBool(start, lower, Py_LT); in _PySlice_GetLongIndices() 435 if (cmp_result < 0) in _PySlice_GetLongIndices() 437 if (cmp_result) { in _PySlice_GetLongIndices() 444 cmp_result = PyObject_RichCompareBool(start, upper, Py_GT); in _PySlice_GetLongIndices() 445 if (cmp_result < 0) in _PySlice_GetLongIndices() 447 if (cmp_result) { in _PySlice_GetLongIndices() 473 cmp_result = PyObject_RichCompareBool(stop, lower, Py_LT); in _PySlice_GetLongIndices() 474 if (cmp_result < 0) in _PySlice_GetLongIndices() 476 if (cmp_result) { in _PySlice_GetLongIndices() [all …]
|
/external/epid-sdk/epid/verifier/src/ |
D | verifybasic.c | 67 bool cmp_result = false; in EpidVerifyBasicSig() local 143 res = EcIsIdentity(G1, B, &cmp_result); in EpidVerifyBasicSig() 145 if (cmp_result != false) { in EpidVerifyBasicSig() 152 res = EcIsEqual(G1, basename_hash, B, &cmp_result); in EpidVerifyBasicSig() 154 if (cmp_result != true) { in EpidVerifyBasicSig() 283 res = FfIsEqual(Fp, c, c_hash, &cmp_result); in EpidVerifyBasicSig() 285 if (cmp_result != true) { in EpidVerifyBasicSig()
|
D | context.c | 341 bool cmp_result = false; in EpidVerifierSetVerifierRl() local 371 res = EcIsEqual(G1, ctx->basename_hash, B, &cmp_result); in EpidVerifierSetVerifierRl() 373 if (true != cmp_result) { in EpidVerifierSetVerifierRl()
|
/external/mesa3d/src/compiler/glsl/ |
D | lower_vector_insert.cpp | 120 ir_variable *const cmp_result = in handle_rvalue() local 123 factory.emit(assign(cmp_result, in handle_rvalue() 128 factory.emit(if_tree(cmp_result, in handle_rvalue()
|
D | loop_analysis.cpp | 164 ir_constant *const cmp_result = cmp->constant_expression_value(mem_ctx); in calculate_iterations() local 166 assert(cmp_result != NULL); in calculate_iterations() 167 if (cmp_result->get_bool_component(0)) { in calculate_iterations()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AVR/ |
D | expand-integer-failure.ll | 13 %cmp_result = icmp eq i16 %a, 255 14 %bool_result = uitofp i1 %cmp_result to double
|
/external/u-boot/lib/ |
D | list_sort.c | 250 int cmp_result; in list_sort_test() local 258 cmp_result = cmp(NULL, cur, cur->next); in list_sort_test() 259 if (cmp_result > 0) { in list_sort_test() 267 if (cmp_result == 0 && el->serial >= el1->serial) { in list_sort_test()
|
/external/epid-sdk/epid/verifier/1.1/src/ |
D | verifybasic.c | 90 bool cmp_result = false; in Epid11VerifyBasicSig() local 176 res = EcIsIdentity(G3, B, &cmp_result); in Epid11VerifyBasicSig() 178 if (cmp_result != false) { in Epid11VerifyBasicSig() 185 res = EcIsEqual(G3, basename_hash, B, &cmp_result); in Epid11VerifyBasicSig() 187 if (cmp_result != true) { in Epid11VerifyBasicSig()
|
D | nrverify.c | 89 bool cmp_result = false; in Epid11NrVerify() local 138 res = EcIsIdentity(G3, T, &(cmp_result)); in Epid11NrVerify() 140 if (cmp_result) { in Epid11NrVerify()
|
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
D | neon_tensor_utils.cc | 768 uint32x4_t cmp_result = vceqq_f32(i_x4_float, zero_x4_float); in NeonIsZeroVector() local 769 if (vgetq_lane_u32(cmp_result, 0) == 0) return false; in NeonIsZeroVector() 770 if (vgetq_lane_u32(cmp_result, 1) == 0) return false; in NeonIsZeroVector() 771 if (vgetq_lane_u32(cmp_result, 2) == 0) return false; in NeonIsZeroVector() 772 if (vgetq_lane_u32(cmp_result, 3) == 0) return false; in NeonIsZeroVector()
|
/external/libaom/libaom/test/ |
D | gviz_api.py | 675 cmp_result = asc_mult * cmp(row1[0].get(key), row2[0].get(key)) 676 if cmp_result: 677 return cmp_result
|
/external/python/cpython3/Python/ |
D | _warnings.c | 32 int cmp_result = PyUnicode_Compare(obj, arg); in check_matched() local 33 if (cmp_result == -1 && PyErr_Occurred()) { in check_matched() 36 return !cmp_result; in check_matched()
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 1823 int cmp_result; in handle_range_longs() local 1871 if (PyObject_Cmp(step, zero, &cmp_result) == -1) in handle_range_longs() 1874 if (cmp_result == 0) { in handle_range_longs() 1880 if (cmp_result > 0) in handle_range_longs()
|
/external/v8/src/compiler/ |
D | simd-scalar-lowering.cc | 504 Node* cmp_result = nullptr; in LowerCompareOp() local 506 cmp_result = graph()->NewNode(op, rep_right[i], rep_left[i]); in LowerCompareOp() 508 cmp_result = graph()->NewNode(op, rep_left[i], rep_right[i]); in LowerCompareOp() 511 graph()->NewNode(machine()->Word32Equal(), cmp_result, in LowerCompareOp()
|