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

/system/extras/tests/bionic/libc/other/
H A Dtest_vfprintf_leak.c39 char temp[64]; local
43 snprintf( temp, sizeof(temp), "%g", n*0.647287623 );
/system/core/libpixelflinger/codeflinger/
H A Dblending.cpp32 component_t& temp, // incomming fragment / output
40 integer_t fragment(temp.reg, temp.h, temp.flags);
41 if (!(temp.flags & CORRUPTIBLE)) {
42 temp.reg = regs.obtain();
43 temp.flags |= CORRUPTIBLE;
59 build_blendFOneMinusF(temp, factor, fragment, fogColor);
64 component_t& temp, // incomming fragment / output
77 if (!temp
31 build_fog( component_t& temp, int component, Scratch& regs) argument
63 build_blending( component_t& temp, const pixel_t& pixel, int component, Scratch& regs) argument
[all...]
H A Dtexturing.cpp893 int temp = scratches.obtain(); local
917 UXTB16(AL, temp, pixel, 0);
923 MUL(AL, 0, dh, temp, u);
924 UXTB16(AL, temp, pixel, 8);
925 MUL(AL, 0, dl, temp, u);
934 UXTB16(AL, temp, pixellb, 0);
939 MLA(AL, 0, dh, temp, u, dh);
940 UXTB16(AL, temp, pixellb, 8);
941 MLA(AL, 0, dl, temp, u, dl);
952 UXTB16(AL, temp, pixe
992 int temp = scratches.obtain(); local
[all...]
H A DGGLAssembler.cpp464 component_t temp(-1);
465 build_incoming_component( temp, dst_component_size,
471 build_blending( temp, mDstPixel, component, scratches );
474 downshift(pixel, component, temp, parts.dither);
479 component_t& temp,
594 temp = fragment;
601 temp = component_t(parts.iterated, component);
607 temp = component_t(parts.texel[i], component);
478 build_incoming_component( component_t& temp, int dst_size, const fragment_parts_t& parts, int component, Scratch& scratches, Scratch& global_regs) argument
/system/core/toolbox/
H A Dgetprop.c12 char temp[PROP_VALUE_MAX + PROP_NAME_MAX + 16]; local
13 snprintf(temp, sizeof temp, "[%s]: [%s]", key, name);
14 strlist_append_dup(list, temp);
/system/extras/tests/bionic/libc/common/
H A Dtest_libgen.c12 char temp[256], *input = _input; local
17 strcpy(temp, _input);
18 input = temp;
128 char temp[256], *input = _input; local
133 strcpy(temp, _input);
134 input = temp;
/system/core/libcutils/
H A Dproperties.c311 char temp[256]; local
312 snprintf( temp, sizeof(temp), "%s=%s", ename, value);
313 putenv(temp);
/system/core/libnetutils/
H A Dpacket.c96 uint16_t temp; local
121 temp = htons(IPPROTO_UDP);
122 udpsum = checksum(&temp, sizeof(temp), udpsum);
123 temp = udp.len;
124 udpsum = checksum(&temp, sizeof(temp), udpsum);
167 uint16_t temp; local
229 temp = packet.udp.check;
232 packet.udp.check = temp;
[all...]
/system/core/libpixelflinger/
H A Dfixed.cpp114 GGLfixed temp = bit + (r<<1); local
115 if (bshift >= 8) temp <<= (bshift-8);
116 else temp >>= (8-bshift);
117 if (a >= temp) {
119 a -= temp;
/system/extras/showslab/
H A Dshowslab.c163 struct slab_info *temp = list->next; local
165 list = temp;
/system/core/adb/
H A Djdwp_service.c244 char temp[5]; local
267 memcpy(temp, proc->in_buff, 4);
268 temp[4] = 0;
270 if (sscanf( temp, "%04x", &proc->pid ) != 1) {
271 D("could not decode JDWP %p PID number: '%s'\n", proc, temp);
H A Dusb_vendors.c204 char temp[PATH_MAX]; local
205 if (get_adb_usb_ini(temp, sizeof(temp)) == 0) {
206 FILE * f = fopen(temp, "rt");
211 while (fgets(temp, sizeof(temp), f) != NULL) {
212 if (temp[0] == '#')
215 long value = strtol(temp, NULL, 0);
H A Dadb.c673 char temp[ MAX_PATH ]; local
677 GetTempPath( sizeof(temp) - 8, temp );
678 strcat( temp, "adb.log" );
685 flog = fopen( temp, "at" );
817 char temp[3]; local
820 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
826 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[
[all...]
/system/core/sh/
H A Dexpand.c1520 char temp[32]; local
1522 char *p = temp + 31;
1524 temp[31] = '\0';

Completed in 198 milliseconds