HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 326 - 350 of 2100) sorted by null

<<11121314151617181920>>

  /external/opencv/otherlibs/highgui/
grfmt_base.cpp 251 GrFmtFilterFactory** temp = (GrFmtFilterFactory**)pos; local
253 assert( temp == 0 || (m_factories <= temp && temp < m_factories + m_curFactories));
254 if( temp )
256 factory = *temp++;
257 pos = (ListPosition)(temp < m_factories + m_curFactories ? temp : 0);
  /external/oprofile/libutil++/
child_reader.cpp 132 ssize_t temp = read(fd1, buf1, PIPE_BUF); local
133 if (temp >= 0)
134 end1 = temp;
145 ssize_t temp = read(fd2, buf2 + end2, sz_buf2 - end2); local
146 if (temp > 0)
147 end2 += temp;
171 int temp = end2; local
194 if (ok && temp != end2)
  /external/protobuf/src/google/protobuf/stubs/
stl_util-inl.h 55 ForwardIterator temp = begin; local
57 delete *temp;
  /external/qemu/distrib/sdl-1.2.15/src/audio/esd/
SDL_esdaudio.c 253 static char temp[BUFSIZ]; local
255 SDL_snprintf(temp, SDL_arraysize(temp), "/proc/%d/cmdline", getpid());
256 fp = fopen(temp, "r");
258 if ( fgets(temp, sizeof(temp)-1, fp) ) {
259 progname = SDL_strrchr(temp, '/');
261 progname = temp;
  /external/qemu/telephony/
test2.c 72 char temp[256]; local
78 temp[mm++] = c;
80 strcat( temp+mm, "<LF>" );
84 strcat( temp+mm, "<CR>" );
88 sprintf( temp+mm, "\\x%02x", c );
89 mm += strlen( temp+mm );
92 temp[mm] = 0;
93 printf( "%p: << %s\n", client, temp );
  /external/v8/src/
smart-array-pointer.h 76 T* temp = p_; local
78 return temp;
atomicops_internals_mips_gcc.h 73 Atomic32 temp, old; local
78 "move %0, %3\n" // temp = new_value
79 "sc %0, %2\n" // *ptr = temp (with atomic check)
83 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
94 Atomic32 temp, temp2; local
99 "ll %0, %2\n" // temp = *ptr
100 "addu %1, %0, %3\n" // temp2 = temp + increment
103 "addu %1, %0, %3\n" // temp2 = temp + increment
105 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 412 Word16 temp; local
454 temp = *p1;
456 if (temp < 0)
462 if (((index ^ temp) & 8) == 0)
467 if (temp <= index)
473 *(p1 + 5) = temp;
482 if ((temp & 7) <= (index & 7))
484 *(p1 + 5) = temp;
spstproc.cpp 194 Word16 temp; local
293 * temp Q0 Q0
305 temp = (Word16)(L_temp >> 14);
308 temp += (Word16)(L_temp >> kShift);
310 mem_w0[j] = xn[i] - temp;
  /frameworks/base/core/java/com/android/internal/util/
JournaledFile.java 36 public JournaledFile(File real, File temp) {
38 mTemp = temp;
43 * Prefers the real file. If it doesn't exist, uses the temp one, and then copies
44 * it to the real one. If there is both a real file and a temp one, assumes that the
45 * temp one isn't fully written and deletes it.
78 // trust anything that's in temp. In order to have the chooseForRead code not
  /frameworks/rs/
rsMatrix2x2.cpp 59 float temp = m[1]; local
61 m[2] = temp;
  /packages/apps/Mms/src/com/android/mms/ui/
LayoutSelectorAdapter.java 46 IconListItem temp = new IconListItem(title, resource); local
47 data.add(temp);
  /system/core/adb/
usb_vendors.c 250 char temp[PATH_MAX]; local
251 if (get_adb_usb_ini(temp, sizeof(temp)) == 0) {
252 FILE * f = fopen(temp, "rt");
257 while (fgets(temp, sizeof(temp), f) != NULL) {
258 if (temp[0] == '#')
261 long value = strtol(temp, NULL, 0);
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 233 Vector3f temp = new Vector3f(); local
236 BufferUtils.populateFromBuffer(temp, input, i);
239 temp.multLocal(127).addLocal(0.5f, 0.5f, 0.5f);
242 byte v1 = (byte) temp.getX();
243 byte v2 = (byte) temp.getY();
244 byte v3 = (byte) temp.getZ();
257 Vector2f temp = new Vector2f(); local
271 BufferUtils.populateFromBuffer(temp, input, i);
274 sb.put( (short) (temp.getX()*Short.MAX_VALUE) );
275 sb.put( (short) (temp.getY()*Short.MAX_VALUE) )
319 Vector3f temp = new Vector3f(); local
    [all...]
  /external/dropbear/libtomcrypt/src/ciphers/aes/
aes.c 95 static ulong32 setup_mix(ulong32 temp)
97 return (Te4_3[byte(temp, 2)]) ^
98 (Te4_2[byte(temp, 1)]) ^
99 (Te4_1[byte(temp, 0)]) ^
100 (Te4_0[byte(temp, 3)]);
105 static ulong32 setup_mix2(ulong32 temp)
107 return Td0(255 & Te4[byte(temp, 3)]) ^
108 Td1(255 & Te4[byte(temp, 2)]) ^
109 Td2(255 & Te4[byte(temp, 1)]) ^
110 Td3(255 & Te4[byte(temp, 0)])
126 ulong32 temp, *rk; local
    [all...]
  /external/chromium/base/
atomicops_internals_mips_gcc.h 53 Atomic32 temp, old; local
58 "move %0, %3\n" // temp = new_value
59 "sc %0, %2\n" // *ptr = temp (with atomic check)
63 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
74 Atomic32 temp, temp2; local
79 "ll %0, %2\n" // temp = *ptr
80 "addu %1, %0, %3\n" // temp2 = temp + increment
83 "addu %1, %0, %3\n" // temp2 = temp + increment
85 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /external/chromium_org/base/
atomicops_internals_mips_gcc.h 50 Atomic32 temp, old; local
55 "move %0, %3\n" // temp = new_value
56 "sc %0, %2\n" // *ptr = temp (with atomic check)
60 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
71 Atomic32 temp, temp2; local
76 "ll %0, %2\n" // temp = *ptr
77 "addu %1, %0, %3\n" // temp2 = temp + increment
80 "addu %1, %0, %3\n" // temp2 = temp + increment
82 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %2\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /external/chromium_org/third_party/zlib/contrib/minizip/
crypt.h 37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
  /external/chromium_org/ui/views/widget/
aero_tooltip_manager.cc 48 POINT temp = mouse_pos_in_pixels.ToPOINT(); local
49 ::MapWindowPoints(HWND_DESKTOP, GetParent(), &temp, 1);
50 mouse_pos_in_pixels.SetPoint(temp.x, temp.y);
  /external/chromium_org/v8/src/
atomicops_internals_mips_gcc.h 71 Atomic32 temp, old; local
76 "move %0, %3\n" // temp = new_value
77 "sc %0, %2\n" // *ptr = temp (with atomic check)
81 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
92 Atomic32 temp, temp2; local
97 "ll %0, %2\n" // temp = *ptr
98 "addu %1, %0, %3\n" // temp2 = temp + increment
101 "addu %1, %0, %3\n" // temp2 = temp + increment
103 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /external/zlib/src/contrib/minizip/
crypt.h 37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 150 byte[] temp = new byte[length];
152 System.arraycopy(mData, mIndex, temp, 0, mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
155 mData = temp;
  /external/bluetooth/bluedroid/utils/src/
bt_utils.c 101 int temp; local
102 if (sscanf(buf, "%d", &temp) == 1) {
103 g_DoSchedulingGroup[g_TaskIdx] = temp == 0;
  /external/chromium_org/third_party/icu/source/tools/genrb/
rbutil.c 74 char temp; local
106 temp = buffer[(length-1) - j];
108 buffer[j] = temp;

Completed in 1635 milliseconds

<<11121314151617181920>>