Searched refs:result (Results 151 - 175 of 204) sorted by relevance

123456789

/system/core/include/private/pixelflinger/
H A Dggl_fixed.h112 GGLfixed result, t; local
117 : [lo]"=r"(result), [hi]"=r"(t), [x]"=r"(x)
125 : [lo]"=&r"(result), [hi]"=&r"(t), [x]"=&r"(x)
130 return result;
135 GGLfixed result, t; local
140 : [lo]"=&r"(result), [hi]"=&r"(t), [x]"=&r"(x)
147 : [lo]"=&r"(result), [hi]"=&r"(t), [x]"=&r"(x)
151 return result;
156 GGLfixed result, t; local
161 : [lo]"=&r"(result), [h
[all...]
/system/core/sh/
H A Darith.y120 long result;
125 result = yyparse();
129 return (result);
/system/extras/tests/bionic/libc/bionic/
H A Dtest_mutex.c46 #define expect(call,result) \
49 if (ret != (result)) { \
51 __FILE__, __LINE__, ret, (result), #call ); \
/system/media/mca/filterfw/java/android/filterfw/core/
H A DSimpleFrame.java45 SimpleFrame result = new SimpleFrame(format, frameManager);
46 result.setObjectValue(object);
47 return result;
H A DNativeFrame.java192 Bitmap result = Bitmap.createBitmap(getFormat().getWidth(),
195 int byteCount = result.getByteCount();
197 if (!getNativeBitmap(result, byteCount, bps)) {
200 return result;
H A DFrameFormat.java160 MutableFrameFormat result = new MutableFrameFormat();
161 result.setBaseType(getBaseType());
162 result.setTarget(getTarget());
163 result.setBytesPerSample(getBytesPerSample());
164 result.setDimensions(getDimensions());
165 result.setObjectClass(getObjectClass());
166 result.mMetaData = mMetaData == null ? null : (KeyValueMap)mMetaData.clone();
167 return result;
H A DFilter.java228 InputPort result = mInputPorts.get(portName);
229 if (result == null) {
233 return result;
241 OutputPort result = mOutputPorts.get(portName);
242 if (result == null) {
246 return result;
258 Frame result = getInputPort(name).pullFrame();
260 mCurrentTimestamp = result.getTimestamp();
263 // As result is retained, we add it to the release pool here
264 mFramesToRelease.add(result);
[all...]
/system/media/wilhelm/src/
H A DThreadPool.c95 SLresult result; local
99 result = err_to_result(err);
100 if (SL_RESULT_SUCCESS != result)
104 result = err_to_result(err);
105 if (SL_RESULT_SUCCESS != result)
109 result = err_to_result(err);
110 if (SL_RESULT_SUCCESS != result)
130 result = SL_RESULT_RESOURCE_ERROR;
143 result = SL_RESULT_RESOURCE_ERROR;
151 result
[all...]
/system/media/wilhelm/src/android/
H A DBufferQueueSource.cpp156 SLresult result = (*callback)(&mAndroidBufferQueueSource->mItf, callbackPContext, local
161 if (SL_RESULT_SUCCESS != result) {
163 SL_LOGW("Unsuccessful result %d returned from AndroidBufferQueueCallback", result);
H A Dandroid_Effect.cpp668 SLresult result = SL_RESULT_SUCCESS; local
671 result = SL_RESULT_SUCCESS;
674 result = SL_RESULT_PERMISSION_DENIED;
677 result = SL_RESULT_RESOURCE_ERROR;
680 result = SL_RESULT_PARAMETER_INVALID;
683 result = SL_RESULT_INTERNAL_ERROR;
687 return result;
701 SLresult result = SL_RESULT_SUCCESS; local
705 result = SL_RESULT_PERMISSION_DENIED;
709 result
730 SLresult result = SL_RESULT_SUCCESS; local
[all...]
/system/core/libusbhost/
H A Dusbhost.c231 struct usb_device* result = usb_device_new(dev_name, fd); local
232 if (result)
233 result->writeable = writeable;
234 return result;
316 char* result = (char *)calloc(1, strlen(USB_FS_ID_FORMAT)); local
317 snprintf(result, strlen(USB_FS_ID_FORMAT) - 1, USB_FS_ID_FORMAT, bus, dev);
318 return result;
343 int i, result; local
350 result = usb_device_control_transfer(device,
353 if (result >
[all...]
/system/core/adb/
H A Dtransport.c744 atransport *result = NULL; local
762 result = t;
767 if (result) {
771 result = NULL;
774 result = t;
776 if (result) {
780 result = NULL;
783 result = t;
785 if (result) {
789 result
[all...]
H A Dusb_linux.c595 int i, result; local
610 result = ioctl(usb->desc, USBDEVFS_CONTROL, &ctrl);
611 if (result > 0)
612 languageCount = (result - 2) / 2;
626 result = ioctl(usb->desc, USBDEVFS_CONTROL, &ctrl);
627 if (result > 0) {
630 result /= 2;
631 for (i = 1; i < result; i++)
H A Dtransport_local.c376 atransport* result = find_emulator_transport_by_adb_port_locked(adb_port); local
378 return result;
396 int result = get_available_local_transport_index_locked(); local
398 return result;
/system/bluetooth/bluez-clean-headers/bluetooth/
H A Dl2cap.h105 uint16_t result; member in struct:__anon252
131 uint16_t result; member in struct:__anon254
182 uint16_t result; member in struct:__anon259
/system/media/mca/filterfw/native/core/
H A Dgl_env.cpp107 const bool result = eglSwapBuffers(display(), surface()) == EGL_TRUE; local
108 return !CheckEGLError("eglSwapBuffers") && result;
346 GLint result; local
347 glGetIntegerv(GL_CURRENT_PROGRAM, &result);
348 LOG_ASSERT(result >= 0);
349 return static_cast<GLuint>(result);
/system/core/netcfg/
H A Dnetcfg.c146 int result = dump_interfaces(); local
148 return result;
/system/media/wilhelm/tests/automated/
H A DBufferQueue_test.cpp176 SLresult result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, local
178 ASSERT_EQ(SL_RESULT_PARAMETER_INVALID, result);
313 SLresult result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audiosrc, local
315 ASSERT_EQ(SL_RESULT_SUCCESS, result);
321 result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, &audiosrc, &audiosnk,
323 ASSERT_EQ(SL_RESULT_FEATURE_UNSUPPORTED, result);
331 SLresult result = (*engineEngine)->CreateAudioPlayer(engineEngine, &playerObject, local
333 ASSERT_EQ(SL_RESULT_FEATURE_UNSUPPORTED, result);
/system/media/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp55 void ExitOnErrorFunc( SLresult result , int line)
57 if (SL_RESULT_SUCCESS != result) {
58 fprintf(stderr, "%u error code encountered at line %d, exiting\n", result, line);
111 SLresult result; local
114 result = (*caller)->GetFillLevel(caller, &level);
115 CheckErr(result);
117 result = (*caller)->GetPrefetchStatus(caller, &status);
118 CheckErr(result);
/system/core/libcutils/
H A Dtztime.c273 register long result; local
276 result = (codep[0] & 0x80) ? ~0L : 0;
278 result = (result << 8) | (codep[i] & 0xff);
279 return result;
286 register time_t result; local
289 result = (codep[0] & 0x80) ? (~(int_fast64_t) 0) : 0;
291 result = result * 256 + (codep[i] & 0xff);
292 return result;
581 register int result; local
1189 register struct tm * result; local
1313 register struct tm * result; local
1648 register int result; local
[all...]
H A Dmq.c223 int result = close(fd); local
224 if (result == -1) {
501 ssize_t result = sendmsg(peerProxy->fd->fd, &msg, 0); local
503 if (result < 0) {
812 int result = socketpair(AF_LOCAL, SOCK_STREAM, 0, sockets); local
813 if (result == -1) {
1039 int result = getsockopt(socket, SOL_SOCKET, SO_PEERCRED, local
1042 if (result == -1) {
1267 int result = bind(listenerSocket, (SocketAddress*) getMasterAddress(), local
1269 if (result
1317 int result = connect(masterSocket, (SocketAddress*) getMasterAddress(), local
[all...]
/system/vold/
H A DProcess.cpp165 int result = 0; local
168 result = 10 * result + (*s++ - '0');
170 return result;
/system/core/fastboot/
H A Dusb_linux.c135 int result; local
147 result = ioctl(fd, USBDEVFS_CONTROL, &ctrl);
148 if (result > 0) {
151 result /= 2;
152 for (i = 1; i < result; i++)
/system/core/liblog/
H A Dlogprint.c450 int result = 0; local
551 result = android_log_printBinaryEvent(&eventData, &eventDataLen,
553 if (result != 0)
584 return result;
587 result = 1;
649 int result; local
650 result = android_log_printBinaryEvent(&eventData, &inCount, &outBuf,
652 if (result < 0) {
655 } else if (result == 1) {
/system/extras/showmap/
H A Dshowmap.c321 int result = 0; local
348 result = 1;
363 result = 1;
366 return result;

Completed in 377 milliseconds

123456789