HomeSort by: relevance | last modified time | path
    Searched defs:In (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utmisc.c 22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * Code in any form, with the right to sublicense such rights; and
33 * license, and in no event shall the patent license extend to any additions
46 * and the following Disclaimer and Export Compliance provision. In addition,
49 * Code and the date of any change. Licensee must include in that file the
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee ma
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/dataflow/
DataFlow.cpp 38 // # Print all instrumented functions. llvm-symbolizer must be present in PATH
78 // TODO(kcc): this is pretty ugly and may break in lots of ways.
79 // We'll need to make a proper in-process symbolizer work with DFSan.
134 FILE *In = fopen(Input, "r");
135 assert(In);
136 fseek(In, 0, SEEK_END);
137 InputLen = ftell(In);
138 fseek(In, 0, SEEK_SET);
140 size_t NumBytesRead = fread(Buf, 1, InputLen, In);
143 fclose(In);
    [all...]

Completed in 11 milliseconds