Searched defs:function (Results 1 - 24 of 24) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdCountLeadingZeros.S42 function h264bsdCountLeadingZeros, export=1 label
H A Dh264bsdClearMbLayer.S48 function h264bsdClearMbLayer, export=1 label
H A Dh264bsdFlushBits.S50 function h264bsdFlushBits, export=1 label
H A Dh264bsdFillRow7.S48 function h264bsdFillRow7, export=1 label
H A Dh264bsdWriteMacroblock.S91 function h264bsdWriteMacroblock, export=1 label
/frameworks/wilhelm/src/
H A Dtrace.c33 void slTraceEnterGlobal(const char *function) argument
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result) argument
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function) argument
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
86 slTraceLeaveInterface(const char *function, SLresult result) argument
133 slTraceEnterInterfaceVoid(const char *function) argument
141 slTraceLeaveInterfaceVoid(const char *function) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp31 /* function Approximate DCT function, scaling and threshold */
50 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
84 OSCL_UNUSED_ARG(function);
260 /* function Approximate DCT function, scaling and threshold */
279 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
315 OSCL_UNUSED_ARG(function);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java59 * adb function is enabled
61 * RNDIS ethernet function is enabled
63 * MTP function is enabled
65 * PTP function is enabled
67 * accessory function is enabled
69 * audio source function is enabled
71 * MIDI function is enabled
170 * A placeholder indicating that no USB function is being specified.
171 * Used to distinguish between selecting no function vs. the default function i
467 isFunctionEnabled(String function) argument
498 setCurrentFunction(String function) argument
594 addFunction(String functions, String function) argument
608 removeFunction(String functions, String function) argument
632 containsFunction(String functions, String function) argument
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScriptGroupFusion.cpp50 // Materialize the function so that later the caller can inspect its argument
64 ALOGE("Kernel fusion (module %s slot %d): failed to find kernel function",
70 ALOGE("Kernel fusion (module %s function %s): cannot handle multiple inputs",
79 const Function* function = mergedModule->getFunction(functionName); local
81 return function;
241 // Either failed to find the kernel function, or the function has multiple inputs.
247 ALOGE("Kernel fusion (module %s function %s): not a kernel",
256 ALOGE("Kernel fusion (module %s function %s): expected input, but got null",
271 ALOGE("Kernel fusion (module %s function
[all...]
/frameworks/rs/api/
H A DGenerateHeaderFiles.cpp199 Function* function = spec.getFunction(); local
200 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
219 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
222 // Write the function name.
279 static void writeFunctionComment(GeneratedFile* file, const Function& function) { argument
281 writeComment(file, function.getName(), function.getSummary(), function.getDescription(),
282 function
364 Function* function = spec->getFunction(); local
[all...]
H A DGenerateStubsWhiteList.cpp174 * This function is recursive because compression is possible at each level of the definition.
178 * This function mangles correctly the types currently used by RenderScript. It does
179 * not currently mangle more complicated types like function pointers, namespaces,
303 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
306 static bool addFunctionManglingToSet(const Function& function, argument
326 /* Add to the set the mangling of each function prototype that can be generated from this
331 static bool addManglingsForSpecification(const Function& function, argument
334 // If the function is inlined, we won't generate an unresolved external for that.
350 if (!addFunctionManglingToSet(function, *permutation, overloadable, apiLevel, 32,
356 if (!addFunctionManglingToSet(function, *permutatio
375 const Function* function = f.second; local
414 generateTestCall(GeneratedFile* file, ostringstream* calls, unsigned int* variableNumber, const Function& function, const FunctionPermutation& permutation) argument
478 const Function* function = f.second; local
[all...]
H A DGenerateDocumentation.cpp152 static bool getUnifiedFunctionPrototypes(Function* function, argument
154 for (auto f : function->getSpecifications()) {
537 static bool writeDetailedFunction(GeneratedFile* file, Function* function) { argument
538 if (function->hidden()) {
541 const string& name = function->getName();
547 *file << " <span class='normal'>: " << function->getSummary() << "</span>\n";
552 if (!getUnifiedFunctionPrototypes(function, &entries)) {
567 if (function->someParametersAreDocumented()) {
571 for (ParameterEntry* p : function->getParameters()) {
578 string ret = function
[all...]
H A DGenerateTestFiles.cpp48 // Returns true if any permutation of the function have tests to b
49 static bool needTestFiles(const Function& function, int versionOfTestFiles) { argument
50 for (auto spec : function.getSpecifications()) {
58 /* One instance of this class is generated for each permutation of a function for which
81 /* Shortcuts to the return parameter and the first input parameter of the function
126 /* Generate the code that verify the results for a RenderScript function where a vector
131 // Generate the method header of the verify function.
168 // Write the script test function for this permutation.
770 * For example, if we have a function that takes three arguments, two for input
809 // Write the function heade
894 startJavaFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
930 finishJavaFile(GeneratedFile* file, const Function& function, const vector<string>& javaCheckMethods) argument
943 startRsFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName) argument
957 writeRelaxedRsFile(const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
976 writeTestFilesForFunction(const Function& function, const string& directory, int versionOfTestFiles) argument
[all...]
H A DSpecification.cpp447 void FunctionSpecification::createPermutations(Function* function, Scanner* scanner) { argument
469 auto p = new FunctionPermutation(function, this, replacementIndexes, scanner);
552 Function* function = systemSpecification.findOrCreateFunction(name, &created); local
553 FunctionSpecification* spec = new FunctionSpecification(function);
554 function->addSpecification(spec);
555 function->updateFinalVersion(info);
588 function->addReturn(p, scanner);
593 function->addParameter(p, scanner);
597 function->scanDocumentationTags(scanner, created, specFile);
611 spec->createPermutations(function, scanne
705 Function* function = spec->getFunction(); local
[all...]
H A DSpecification.h68 * - conditional: Don't verify this value the function return NaN.
75 /* Information about a parameter to a function. The values of all the fields should only be set by
210 /* Represents a function, like "clamp". Even though the spec file contains many entries for clamp,
318 // Maximum number of placeholders (like #1, #2) in function specifications.
321 /* Defines one of the many variations of the function. There's a one to one correspondance between
347 // function.
359 /* As of this writing, convert_... is the only function with #1 in its name.
360 * The related Function object contains the name of the function without #n, e.g. convert.
378 void createPermutations(Function* function, Scanner* scanner);
381 FunctionSpecification(Function* function) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java288 private void throwEglException(String function) { argument
289 throwEglException(function, mEgl.eglGetError());
292 public static void throwEglException(String function, int error) { argument
293 String message = formatEglError(function, error);
297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
301 public static String formatEglError(String function, int error) { argument
302 return function + " failed: " + error;
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbService.java284 public boolean isFunctionEnabled(String function) { argument
286 return mDeviceManager != null && mDeviceManager.isFunctionEnabled(function);
290 public void setCurrentFunction(String function) { argument
293 if (!isSupportedCurrentFunction(function)) {
294 Slog.w(TAG, "Caller of setCurrentFunction() requested unsupported USB function: "
295 + function);
296 function = UsbManager.USB_FUNCTION_NONE;
300 mDeviceManager.setCurrentFunctions(function);
306 private static boolean isSupportedCurrentFunction(String function) { argument
307 if (function
[all...]
H A DUsbDeviceManager.java439 // persisting default function
446 // After persisting them use the lock-down aware function set
457 * Evaluates USB function policies and applies the change accordingly.
489 Slog.e(TAG, "Failsafe 3: Restoring empty function list (with ADB if enabled).");
857 pw.println(" Kernel function list: "
886 public boolean isFunctionEnabled(String function) { argument
887 return UsbManager.containsFunction(SystemProperties.get(USB_CONFIG_PROPERTY), function);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java833 * Registers a CustomFunction callback as a function that can be called from
836 * @param name the name of the sqlite3 function
837 * @param numArgs the number of arguments for the function
838 * @param function callback to call when the function is executed
841 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
843 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
2187 * A callback interface for a custom sqlite3 function.
2188 * This can be used to create a function that can be called from
H A DSQLiteConnection.java122 SQLiteCustomFunction function);
221 SQLiteCustomFunction function = mConfiguration.customFunctions.get(i);
222 nativeRegisterCustomFunction(mConnectionPtr, function);
403 SQLiteCustomFunction function = configuration.customFunctions.get(i);
404 if (!mConfiguration.customFunctions.contains(function)) {
405 nativeRegisterCustomFunction(mConnectionPtr, function);
1060 * This function is written so that it may be called by a thread that does not
1089 * This function is written so that it may be called by a thread that does not
121 nativeRegisterCustomFunction(long connectionPtr, SQLiteCustomFunction function) argument
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java1765 private void checkSystemUid(String function) { argument
1768 throw new SecurityException(function + " must by called by the system");
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1183 private void throwEglException(String function) { argument
1184 throwEglException(function, mEgl.eglGetError());
1187 public static void throwEglException(String function, int error) { argument
1188 String message = formatEglError(function, error);
1196 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1197 Log.w(tag, formatEglError(function, error));
1200 public static String formatEglError(String function, int error) { argument
1201 return function + " failed: " + EGLLogWrapper.getErrorString(error);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java3723 private void enforceCallingPermission(String permission, String function) { argument
3729 + " required to call " + function + " from pid="
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2189 milliseconds