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

12

/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/native/vulkan/include/vulkan/
H A Dvk_layer_interface.h52 VkLayerFunction function; member in struct:__anon1590
68 VkLayerFunction function; member in struct:__anon1592
/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.java62 * adb function is enabled
64 * RNDIS ethernet function is enabled
66 * MTP function is enabled
68 * PTP function is enabled
70 * accessory function is enabled
72 * audio source function is enabled
74 * MIDI function is enabled
77 * USB is not configued, MTP function is enabled, and all the other functions are disabled.
183 * A placeholder indicating that no USB function is being specified.
184 * Used to distinguish between selecting no function v
490 isFunctionEnabled(String function) argument
520 setCurrentFunction(String function) argument
614 addFunction(String functions, String function) argument
628 removeFunction(String functions, String function) argument
652 containsFunction(String functions, String function) argument
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScriptGroupFusion.cpp45 // Materialize the function so that later the caller can inspect its argument
58 ALOGE("Kernel fusion (module %s slot %d): failed to find kernel function",
64 ALOGE("Kernel fusion (module %s function %s): cannot handle multiple inputs",
73 const Function* function = mergedModule->getFunction(functionName); local
75 return function;
234 // Either failed to find the kernel function, or the function has multiple inputs.
240 ALOGE("Kernel fusion (module %s function %s): not a kernel",
249 ALOGE("Kernel fusion (module %s function %s): expected input, but got null",
264 ALOGE("Kernel fusion (module %s function
[all...]
/frameworks/rs/api/
H A DGenerateHeaderFiles.cpp202 Function* function = spec.getFunction(); local
203 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
222 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
225 // Write the function name.
282 static void writeFunctionComment(GeneratedFile* file, const Function& function) { argument
284 writeComment(file, function.getName(), function.getSummary(), function.getDescription(),
285 function
371 Function* function = spec->getFunction(); local
[all...]
H A DGenerateStubsWhiteList.cpp188 * This function is recursive because compression is possible at each level of the definition.
192 * This function mangles correctly the types currently used by RenderScript. It does
193 * not currently mangle more complicated types like function pointers, namespaces,
322 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
325 static bool addFunctionManglingToSet(const Function& function, argument
345 /* Add to the set the mangling of each function prototype that can be generated from this
350 static bool addManglingsForSpecification(const Function& function, argument
353 // If the function is inlined, we won't generate an unresolved external for that.
372 if (!addFunctionManglingToSet(function, *permutation, overloadable, apiLevel, 32,
378 if (!addFunctionManglingToSet(function, *permutatio
397 const Function* function = f.second; local
440 generateTestCall(GeneratedFile* file, ostringstream* calls, unsigned int* variableNumber, const Function& function, const FunctionPermutation& permutation) argument
507 const Function* function = f.second; local
[all...]
H A DGenerateDocumentation.cpp152 static bool getUnifiedFunctionPrototypes(Function* function, argument
154 for (auto f : function->getSpecifications()) {
548 static bool writeDetailedFunction(GeneratedFile* file, Function* function) { argument
549 if (function->hidden()) {
552 const string& name = function->getName();
558 *file << " <span class='normal'>: " << function->getSummary() << "</span>\n";
563 if (!getUnifiedFunctionPrototypes(function, &entries)) {
578 if (function->someParametersAreDocumented()) {
582 for (ParameterEntry* p : function->getParameters()) {
589 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, unsigned 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
134 // Generate the method header of the verify function.
171 // Write the script test function for this permutation.
874 * For example, if we have a function that takes three arguments, two for input
913 // Write the function heade
998 startJavaFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
1035 finishJavaFile(GeneratedFile* file, const Function& function, const vector<string>& javaCheckMethods) argument
1048 startRsFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName) argument
1062 writeRelaxedRsFile(const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
1081 writeTestFilesForFunction(const Function& function, const string& directory, unsigned int versionOfTestFiles) argument
[all...]
H A DSpecification.cpp55 // Patterns that get substituted with C type or RS Data type names in function
495 void FunctionSpecification::createPermutations(Function* function, Scanner* scanner) { argument
517 auto p = new FunctionPermutation(function, this, replacementIndexes, scanner);
618 Function* function = systemSpecification.findOrCreateFunction(name, &created); local
619 FunctionSpecification* spec = new FunctionSpecification(function);
620 function->addSpecification(spec);
621 function->updateFinalVersion(info);
661 // Disallow RST_* pattern in function name
667 function->addReturn(p, scanner);
675 function
794 Function* function = spec->getFunction(); local
[all...]
H A DSpecification.h69 * - conditional: Don't verify this value the function return NaN.
76 /* Information about a parameter to a function. The values of all the fields should only be set by
217 /* Represents a function, like "clamp". Even though the spec file contains many entries for clamp,
326 // Maximum number of placeholders (like #1, #2) in function specifications.
329 /* Defines one of the many variations of the function. There's a one to one correspondance between
358 // function.
374 /* As of this writing, convert_... is the only function with #1 in its name.
375 * The related Function object contains the name of the function without #n, e.g. convert.
395 // Helper function used by expandString to perform #RST_* substitution
401 void createPermutations(Function* function, Scanne
404 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.java444 // persisting default function
451 // After persisting them use the lock-down aware function set
462 * Evaluates USB function policies and applies the change accordingly.
494 Slog.e(TAG, "Failsafe 3: Restoring empty function list (with ADB if enabled).");
586 // MTP function is enabled by default.
620 final String function = functions[i];
621 if (UsbManager.USB_FUNCTION_NONE.equals(function)) {
624 intent.putExtra(function, true);
914 pw.println(" Kernel function list: "
943 public boolean isFunctionEnabled(String function) { argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java835 * Registers a CustomFunction callback as a function that can be called from
838 * @param name the name of the sqlite3 function
839 * @param numArgs the number of arguments for the function
840 * @param function callback to call when the function is executed
843 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
845 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
2203 * A callback interface for a custom sqlite3 function.
2204 * This can be used to create a function that can be called from
H A DSQLiteConnection.java124 SQLiteCustomFunction function);
223 SQLiteCustomFunction function = mConfiguration.customFunctions.get(i);
224 nativeRegisterCustomFunction(mConnectionPtr, function);
405 SQLiteCustomFunction function = configuration.customFunctions.get(i);
406 if (!mConfiguration.customFunctions.contains(function)) {
407 nativeRegisterCustomFunction(mConnectionPtr, function);
1062 * This function is written so that it may be called by a thread that does not
1091 * This function is written so that it may be called by a thread that does not
123 nativeRegisterCustomFunction(long connectionPtr, SQLiteCustomFunction function) argument
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1195 private void throwEglException(String function) { argument
1196 throwEglException(function, mEgl.eglGetError());
1199 public static void throwEglException(String function, int error) { argument
1200 String message = formatEglError(function, error);
1208 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1209 Log.w(tag, formatEglError(function, error));
1212 public static String formatEglError(String function, int error) { argument
1213 return function + " failed: " + EGLLogWrapper.getErrorString(error);
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java2273 private void checkSystemUid(String function) { argument
2276 throw new SecurityException(function + " must by called by the system");
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.cpp70 static hwc2_function_pointer_t asFP(T function) argument
72 static_assert(std::is_same<PFN, T>::value, "Incompatible function pointer");
73 return reinterpret_cast<hwc2_function_pointer_t>(function);
126 // need to provide a valid function pointer for hwc2_close to call
342 ALOGE("doGetFunction: Unknown function descriptor: %d (%s)",
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java4120 private void enforceCallingPermission(String permission, String function) { argument
4126 + " required to call " + function + " from pid="

Completed in 497 milliseconds

12