HomeSort by relevance Sort by last modified time
    Searched refs:functions (Results 201 - 225 of 2176) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/compiler-rt/lib/sanitizer_common/scripts/
gen_dynamic_list.py 11 # Generates the list of functions that should be exported from sanitizer
44 functions = []
57 functions.append(cols[2])
58 return functions
83 # functions due to gold internal error.
88 # Export sanitizer interface functions.
92 # Additional exported functions from files.
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_conditional_render.c 145 brw_init_conditional_render_functions(struct dd_function_table *functions)
147 functions->BeginConditionalRender = brw_begin_conditional_render;
148 functions->EndConditionalRender = brw_end_conditional_render;
  /external/python/cpython2/Mac/Modules/te/
tesupport.py 199 functions = [] variable
205 functions.append(f)
211 for f in functions: module.add(f)
  /external/tensorflow/tensorflow/python/kernel_tests/
division_future_test.py 37 functions = (lambda x: x), constant_op.constant
57 for fx in functions:
58 for fy in functions:
division_past_test.py 37 functions = (lambda x: x), constant_op.constant
57 for fx in functions:
58 for fy in functions:
  /device/linaro/hikey/uefi-tools/
tos-build.sh 11 . "$TOOLS_DIR"/common-functions
  /external/apache-xml/src/main/java/org/apache/xpath/
ExtensionsProvider.java 25 import org.apache.xpath.functions.FuncExtFunction;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCount.java 21 package org.apache.xpath.functions;
FuncGenerateId.java 21 package org.apache.xpath.functions;
FuncRound.java 21 package org.apache.xpath.functions;
FuncStartsWith.java 21 package org.apache.xpath.functions;
FuncSubstringBefore.java 21 package org.apache.xpath.functions;
  /external/ltp/include/mk/
testcases.mk 24 include $(top_srcdir)/include/mk/functions.mk
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.h 85 st_init_fbo_functions(struct dd_function_table *functions);
  /external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.h 58 std::vector<FunctionNode*> functions; member in class:AnalyzeCallDepth
  /frameworks/rs/rsov/compiler/
InlinePreparationPass.cpp 46 for (auto &F : M.functions()) {
  /prebuilts/go/darwin-x86/src/cmd/internal/objabi/
funcdata.go 20 // ArgsSizeUnknown is set in Func.argsize to mark all functions
21 // whose argument size is unknown (C vararg functions, and
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7272.go 7 // Issue 7272: test builtin functions in statement context and in
8 // go/defer functions.
  /prebuilts/go/darwin-x86/test/
runtime.go 11 // functions in its symbol table, but some functions
  /prebuilts/go/linux-x86/src/cmd/internal/objabi/
funcdata.go 20 // ArgsSizeUnknown is set in Func.argsize to mark all functions
21 // whose argument size is unknown (C vararg functions, and
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7272.go 7 // Issue 7272: test builtin functions in statement context and in
8 // go/defer functions.
  /prebuilts/go/linux-x86/test/
runtime.go 11 // functions in its symbol table, but some functions
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 35 * <p>A comparison of the various hash functions can be found
49 * <p><b>Warning:</b> a new random seed for these functions is chosen each time the {@code
417 ConcatenatedHashFunction(HashFunction... functions) {
418 super(functions);
420 for (HashFunction function : functions) {
446 if (bits != other.bits || functions.length != other.functions.length) {
449 for (int i = 0; i < functions.length; i++) {
450 if (!functions[i].equals(other.functions[i]))
    [all...]
  /external/icu/icu4c/source/test/perf/DateFmtPerf/
DateFmtPerf.cpp 203 // Declare functions
204 UPerfFunction *functions[FUNCTION_COUNT]; local
206 functions[0] = new DateFmtFunction(40, "en");
207 functions[1] = new BreakItFunction(10000, true); // breakIterator word
208 functions[2] = new BreakItFunction(10000, false); // breakIterator char
209 functions[3] = new NumFmtFunction(100000, "en");
210 functions[4] = new CollationFunction(400, "en");
211 functions[5] = new StdioNumFmtFunction(100000, "en");
228 t[j] += (functions[j]->time(1, &status) / ITER_COUNT);
257 out << " iterations=\"" << functions[i]->getOperationsPerIteration() << "\"" << endl
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_context.c 137 /* Initialize the driver's misc functions.
139 static void r200InitDriverFuncs( struct dd_function_table *functions )
141 functions->GetString = r200GetString;
186 struct dd_function_table functions; local
230 /* Init default driver functions then plug in our R200-specific functions
231 * (the texture functions are especially important)
233 _mesa_init_driver_functions(&functions);
234 r200InitDriverFuncs(&functions);
235 r200InitIoctlFuncs(&functions);
    [all...]

Completed in 614 milliseconds

1 2 3 4 5 6 7 891011>>