HomeSort by relevance Sort by last modified time
    Searched defs:exact (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/lldb/source/Breakpoint/
BreakpointResolverFileRegex.cpp 68 bool exact = false; local
74 start_idx = cu->FindLineEntry (start_idx, line_matches[i], NULL, exact, &line_entry);
77 exact = true;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 270 BOOL exact; member in struct:attrib_match_info
349 if (ami->exact) {
350 /* For an exact match criteria, if the actual and expected values differ,
390 * points for a mismatch when the match does not have to be exact.
391 * Set a score to 0 if there is a mismatch for an exact match criteria.
  /external/chromium_org/third_party/skia/src/animator/
SkOperandIterpolator.cpp 63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 270 BOOL exact; member in struct:attrib_match_info
349 if (ami->exact) {
350 /* For an exact match criteria, if the actual and expected values differ,
390 * points for a mismatch when the match does not have to be exact.
391 * Set a score to 0 if there is a mismatch for an exact match criteria.
  /external/skia/src/animator/
SkOperandIterpolator.cpp 63 SkBool exact; local
64 Result result = timeToT(time, &T, &index, &exact);
69 if (exact)
  /external/e2fsprogs/e2fsck/
mtrace.h 178 __ptr_t exact; /* The address that malloc returned. */ member in struct:alignlist
  /external/lldb/source/API/
SBCompileUnit.cpp 105 const bool exact = true; local
106 return FindLineEntryIndex (start_idx, line, inline_file_spec, exact);
110 SBCompileUnit::FindLineEntryIndex (uint32_t start_idx, uint32_t line, SBFileSpec *inline_file_spec, bool exact) const
127 exact,
SBThread.cpp 856 const bool exact = false; local
862 exact,
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
getopt.c 330 or is an exact match for some defined option. If they have an
487 int exact = 0;
495 /* Test all long options for either exact match
503 /* Exact match found. */
506 exact = 1;
523 if (ambig && !exact)
805 int exact = 0;
866 /* Test all long options for either exact match
873 /* Exact match found. */
876 exact = 1
483 int exact = 0; local
801 int exact = 0; local
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 503 of 32768/25200 instead of the exact value to avoid critical cases
534 FIXP_SGL exact, temp; local
538 exact = (FIXP_SGL)(stop << (FRACT_BITS-8)); /* Shift left to gain some accuracy */
542 exact = FX_DBL2FX_SGL(fMult(exact,bandfactor));
546 temp = exact + FL2FXCONST_SGL(128.0/32768.0);
  /external/bison/lib/
getopt.c 328 or is an exact match for some defined option. If they have an
494 int exact = 0;
502 /* Test all long options for either exact match
509 /* Exact match found. */
512 exact = 1;
534 if (ambig_list != NULL && !exact)
841 int exact = 0;
905 /* Test all long options for either exact match
912 /* Exact match found. */
915 exact = 1
490 int exact = 0; local
837 int exact = 0; local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp 99 bool exact = true; local
113 exact = false;
119 if (exact) {
126 *exactPtr = exact;
186 SkBool exact; local
187 Result result = timeToT(time, &T, &index, &exact);
191 if (exact) {
  /external/skia/src/utils/
SkInterpolator.cpp 99 bool exact = true; local
113 exact = false;
119 if (exact) {
126 *exactPtr = exact;
186 SkBool exact; local
187 Result result = timeToT(time, &T, &index, &exact);
191 if (exact) {
  /ndk/sources/host-tools/make-3.81/
getopt.c 484 or is an exact match for some defined option. If they have an
630 int exact = 0;
638 /* Test all long options for either exact match
646 /* Exact match found. */
649 exact = 1;
663 if (ambig && !exact)
786 int exact = 0;
825 /* Test all long options for either exact match
832 /* Exact match found. */
835 exact = 1
627 int exact = 0; local
783 int exact = 0; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter.cc 225 set<string>& exact() { return exact_; } function in class:re2::Prefilter::Info
235 // are placed in exact_. When it is no longer an exact
301 // Concats a and b. Requires that both are exact sets.
302 // Forms an exact set that is a crossproduct of a and b.
319 // Used only when a or b is not exact or when the
320 // exact cross product is likely to be too big.
374 // Constructs Info for a+ given a. If a was exact set, it isn't
578 // Exact is concat of recent contiguous exact nodes.
580 Info* exact = NULL local
    [all...]
  /external/lldb/source/Target/
Platform.cpp 180 // First try exact arch matches across all platform plug-ins
181 bool exact = true; local
187 if (platform_sp && platform_sp->IsCompatibleArchitecture(arch, exact, platform_arch_ptr))
192 exact = false;
198 if (platform_sp && platform_sp->IsCompatibleArchitecture(arch, exact, platform_arch_ptr))
734 // Try for an exact architecture match first.
  /external/regex-re2/re2/
prefilter.cc 225 set<string>& exact() { return exact_; } function in class:re2::Prefilter::Info
235 // are placed in exact_. When it is no longer an exact
309 // Concats a and b. Requires that both are exact sets.
310 // Forms an exact set that is a crossproduct of a and b.
327 // Used only when a or b is not exact or when the
328 // exact cross product is likely to be too big.
382 // Constructs Info for a+ given a. If a was exact set, it isn't
586 // Exact is concat of recent contiguous exact nodes.
588 Info* exact = NULL local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/cloog/
clast.h 161 typedef enum filterType {exact, subset} ClastFilterType; enumerator in enum:filterType
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/
clast.h 161 typedef enum filterType {exact, subset} ClastFilterType; enumerator in enum:filterType
  /external/lldb/source/Commands/
CommandObjectThread.cpp 1040 const bool exact = false; local
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 640 CommandInterpreter::GetCommandSP (const char *cmd_cstr, bool include_aliases, bool exact, StringList *matches)
668 if (!exact && !command_sp)
670 // We will only get into here if we didn't find any exact matches.
956 const bool exact = false; local
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 790 static bool exact(GLint reqValue, GLint confValue) { function in struct:android::config_management_t
    [all...]
  /external/elfutils/0.153/src/
elflint.c 3334 enum { unused, exact, atleast, exact_or_gnuld } attrflag; enumerator in enum:__anon25095::__anon25096
    [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_07_part1.c 1040 int exact)
1049 name, filter, exact ? "exact" : "starting");
1052 if (exact) {
1749 int exact; local
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-codegen-arm.cc 3745 Label done, exact; local
    [all...]

Completed in 1693 milliseconds

1 2 3