Searched defs:temp (Results 1 - 7 of 7) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
H A DGLutils.h30 T temp; local
31 temp=x;
33 y=temp;
/sdk/emulator/tools/
H A Dqemu-props.c85 char temp[BUFF_SIZE]; local
86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
92 temp[len] = '\0'; /* zero-terminate string */
94 DD("received: %.*s", len, temp);
97 q = strchr(temp, '=');
104 if (property_set(temp, q) < 0) {
105 DD("could not set property '%s' to '%s'", temp, q);
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
H A DRangeManip.cpp79 Range temp; local
107 Range temp;
117 if (list[i].rangeUnion(list[j],temp)) {
119 list[i] = temp;
H A Detc1.cpp447 etc_compressed temp; local
448 temp.score = 0;
449 temp.high = originalHigh | (i << 5);
450 temp.low = 0;
451 etc_encode_subblock_helper(pIn, inMask, &temp, flipped, false,
453 take_best(pCompressed, &temp);
458 etc_compressed temp; local
459 temp.score = firstHalf.score;
460 temp.high = firstHalf.high | (i << 2);
461 temp
[all...]
/sdk/emulator/opengl/tests/event_injector/
H A Demulator-console.c86 char temp[64]; local
87 int ret = socket_recv(con->fd, temp, sizeof temp);
97 DD("Console received: '%.*s'", ret, temp);
307 char temp[128]; local
310 snprintf(temp, sizeof temp,
313 emulatorConsole_send(con, temp);
326 char temp[128]; local
329 snprintf(temp, sizeo
340 char temp[128]; local
[all...]
H A Dsockets.c319 char temp[16]; local
324 temp[nn] = '0'+rem;
329 temp[nn++] = '0';
332 buf = format_char(buf, end, temp[--nn]);
/sdk/emulator/gps/
H A Dgps_qemu.c161 char temp[16]; local
163 if (len >= (int)sizeof(temp))
166 memcpy( temp, p, len );
167 temp[len] = 0;
168 return strtod( temp, NULL );
493 char temp[256]; local
494 char* p = temp;
495 char* end = p + sizeof(temp);
516 D(temp);

Completed in 130 milliseconds