Home
last modified time | relevance | path

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

/external/OpenCL-CTS/test_conformance/basic/
Dtest_vector_creation.cpp369 char *start_loc = strstr(program_source, search); in test_vector_creation() local
370 if (start_loc == NULL) in test_vector_creation()
373 char *end_loc = strstr(start_loc, "\n"); in test_vector_creation()
374 memcpy(&found_line, start_loc, (end_loc-start_loc)); in test_vector_creation()
375 found_line[end_loc-start_loc]='\0'; in test_vector_creation()
/external/igt-gpu-tools/tests/
Dkms_vrr.c107 char *start_loc; in get_vrr_range() local
119 igt_assert(start_loc = strstr(buf, "Min: ")); in get_vrr_range()
120 igt_assert_eq(sscanf(start_loc, "Min: %u", &range.min), 1); in get_vrr_range()
122 igt_assert(start_loc = strstr(buf, "Max: ")); in get_vrr_range()
123 igt_assert_eq(sscanf(start_loc, "Max: %u", &range.max), 1); in get_vrr_range()
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/
Dmodify_srcu.awk246 start_loc = RSTART + RLENGTH;
248 len = end_loc - start_loc;
249 initializer = substr(old_record, start_loc, len);
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionSourceCode.cpp473 std::string transformed_text, size_t &start_loc, size_t &end_loc) { in GetOriginalBodyBounds() argument
474 start_loc = transformed_text.find(m_start_marker); in GetOriginalBodyBounds()
475 if (start_loc == std::string::npos) in GetOriginalBodyBounds()
477 start_loc += m_start_marker.size(); in GetOriginalBodyBounds()
DClangExpressionSourceCode.h72 size_t &start_loc, size_t &end_loc);
/external/igt-gpu-tools/lib/
Digt_debugfs.c613 char *start_loc; in igt_hpd_storm_detected() local
621 igt_assert(start_loc = strstr(buf, "Detected: ")); in igt_hpd_storm_detected()
622 igt_assert_eq(sscanf(start_loc, "Detected: %s\n", detected_str), 1); in igt_hpd_storm_detected()
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DCPlusPlusNameParser.cpp642 clang::SourceLocation start_loc = first_token.getLocation(); in GetTextForRange() local
644 unsigned start_pos = start_loc.getRawEncoding(); in GetTextForRange()
/external/bcc/src/cc/frontends/clang/
Db_frontend_action.cc947 auto start_loc = rewriter_.getSourceMgr().getFileLoc(GET_BEGINLOC(Decl)); in VisitCallExpr() local
948 if (rewriter_.getSourceMgr().getFileID(start_loc) in VisitCallExpr()