/ndk/sources/host-tools/sed-4.2.1/m4/ |
tempname.m4 | 8 # glibc provides __gen_tempname as a wrapper for mk[ds]temp. Expose
|
/packages/apps/Gallery2/jni/filters/ |
geometry.c | 28 int temp = total - width; local 30 memcpy(destination + temp - i, source + i, bytes_to_copy); 42 int temp = 0; local 44 temp = width + i - cpy_bytes; 46 memcpy(destination + temp - j, source + i + j, cpy_bytes); 56 char* temp = (char *) malloc(arr_len); local 57 flipHorizontal(source, srcWidth, srcHeight, temp, dstWidth, dstHeight); 58 flipVertical(temp, dstWidth, dstHeight, destination, dstWidth, dstHeight); 59 free(temp);
|
/packages/apps/Mms/src/com/android/mms/ |
TempFileProvider.java | 125 * to this file. It's named '.temp.jpg' so Gallery won't pick it up. 132 return getScrapPath(context, ".temp.jpg"); 138 * @param fileExtension file extension for the temp file, typically ".jpg" or ".3gp" 149 // Replace the filename ".temp.jpg" with ".temp#.[jpg | 3gp]" where # is the unique 154 File newTempFile = new File(getScrapPath(context, ".temp" + uniqueIdentifier + 172 // An admittedly weak determination of a temp file, but sufficient for current needs. 173 // For now, the penalty of returning true for a file that isn't a temp file is simply 175 return path.contains(".temp");
|
/system/core/libcutils/ |
fs.c | 110 char temp[PATH_MAX]; local 111 if (snprintf(temp, PATH_MAX, "%s.XXXXXX", path) >= PATH_MAX) { 116 int fd = TEMP_FAILURE_RETRY(mkstemp(temp)); 118 ALOGE("Failed to open %s: %s", temp, strerror(errno)); 129 ALOGE("Failed to write %s: %s", temp, strerror(errno)); 133 ALOGE("Failed to close %s: %s", temp, strerror(errno)); 137 if (rename(temp, path) == -1) { 138 ALOGE("Failed to rename %s to %s: %s", temp, path, strerror(errno)); 147 unlink(temp);
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
q_plsf_3.cpp | 209 Word16 *p_dico, temp; 217 temp = sub (lsf_r1[0], *p_dico++); 218 temp = mult (wf1[0], temp); 219 dist = L_mult (temp, temp); 221 temp = sub (lsf_r1[1], *p_dico++); 222 temp = mult (wf1[1], temp); 223 dist = L_mac (dist, temp, temp) 285 Word16 temp; local 611 Word16 temp; local 1028 Word16 temp; local [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_dlssynth.c | 142 EAS_I32 temp; local 145 temp = pDLSArt->modLFOToPitch; 149 temp += ((pDLSArt->modLFOCC1ToPitch * pChannel->modWheel) >> 7); 153 temp += ((pDLSArt->modLFOChanPressToPitch * pChannel->channelPressure) >> 7); 156 pitchCents += FMUL_15x15(temp, pWTVoice->modLFO.lfoValue); 159 temp = pDLSArt->vibLFOToPitch; 163 temp += ((pDLSArt->vibLFOCC1ToPitch * pChannel->modWheel) >> 7); 167 temp += ((pDLSArt->vibLFOChanPressToPitch * pChannel->channelPressure) >> 7); 170 pitchCents += FMUL_15x15(temp, pWTVoice->vibLFO.lfoValue); 187 EAS_I32 temp; local 250 EAS_I32 temp; local 385 EAS_I32 temp; local 469 EAS_I32 temp; local [all...] |
/external/e2fsprogs/ext2ed/ |
inode_com.c | 123 unsigned short temp; local 147 temp=inode_ptr->i_mode & 0x1ff; 148 temp=temp >> i; 149 if (temp & 4) 154 if (temp & 2) 159 if (temp & 1) 170 temp=inode_ptr->i_flags; 172 if (temp & EXT2_SECRM_FL) 178 if (temp & EXT2_UNRM_FL [all...] |
/external/jpeg/ |
jcdctmgr.c | 227 { register DCTELEM temp, qval; local 233 temp = workspace[i]; 251 if (temp < 0) { 252 temp = -temp; 253 temp += qval>>1; /* for rounding */ 254 DIVIDE_BY(temp, qval); 255 temp = -temp; 257 temp += qval>>1; /* for rounding * 318 { register FAST_FLOAT temp; local [all...] |
/external/lzma/C/Util/SfxSetup/ |
SfxSetup.c | 336 errorMessage = "Can't create temp folder";
389 WCHAR *temp;
local 398 temp = path + pathLen;
400 SzArEx_GetFileNameUtf16(&db, i, temp);
414 for (j = 0; temp[j] != 0; j++)
416 if (temp[j] == '/')
418 temp[j] = 0;
420 temp[j] = CHAR_PATH_SEPARATOR;
433 const WCHAR *name = temp + nameStartPos;
435 unsigned nameLen = FindExt(temp + nameStartPos, &extLen); 503 WCHAR *temp = path + pathLen; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jcdctmgr.c | 227 { register DCTELEM temp, qval; local 233 temp = workspace[i]; 251 if (temp < 0) { 252 temp = -temp; 253 temp += qval>>1; /* for rounding */ 254 DIVIDE_BY(temp, qval); 255 temp = -temp; 257 temp += qval>>1; /* for rounding * 318 { register FAST_FLOAT temp; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
graw_util.h | 226 struct pipe_resource temp, *tex; local 229 temp.target = PIPE_TEXTURE_2D; 230 temp.format = PIPE_FORMAT_B8G8R8A8_UNORM; 231 temp.width0 = width; 232 temp.height0 = height; 233 temp.depth0 = 1; 234 temp.last_level = 0; 235 temp.array_size = 1; 236 temp.nr_samples = 1; 237 temp.bind = PIPE_BIND_SAMPLER_VIEW [all...] |
/external/mesa3d/src/gallium/tests/graw/ |
graw_util.h | 226 struct pipe_resource temp, *tex; local 229 temp.target = PIPE_TEXTURE_2D; 230 temp.format = PIPE_FORMAT_B8G8R8A8_UNORM; 231 temp.width0 = width; 232 temp.height0 = height; 233 temp.depth0 = 1; 234 temp.last_level = 0; 235 temp.array_size = 1; 236 temp.nr_samples = 1; 237 temp.bind = PIPE_BIND_SAMPLER_VIEW [all...] |
/external/smack/src/org/xbill/DNS/ |
LOCRecord.java | 190 long temp = value - (1L << 31); local 191 if (temp < 0) { 192 temp = -temp; 197 sb.append(temp / (3600 * 1000)); /* degrees */ 198 temp = temp % (3600 * 1000); 201 sb.append(temp / (60 * 1000)); /* minutes */ 202 temp = temp % (60 * 1000) [all...] |
/external/srec/portable/src/ |
LCHAR.c | 121 unsigned int temp; local 151 CHK(rc, lstrtoui(text, &temp, 10)); 152 *result = (temp != 0); 161 LCHAR temp; local 173 temp = *end; 178 *end = temp; 182 *end = temp; 256 LCHAR temp; /* temp char */ local 290 temp = *p [all...] |
/external/sonivox/arm-fm-22k/lib_src/ |
eas_fmsynth.c | 225 EAS_I32 temp; local 228 temp = (EAS_I32) nLogRate << 7; 229 temp += ((EAS_I32) nKeyNumber - EG_SCALE_PIVOT_POINT) * (EAS_I32) nEGScale; 232 temp = max(temp, 0); 233 temp = min(temp, 32767); 237 return fmRateTable[temp >> 8]; 401 EAS_I32 temp; local 422 temp = (EAS_I32) pChannel->pan - 64 518 EAS_I32 temp; local 627 EAS_U32 temp; local 730 EAS_I32 temp; local 806 EAS_I32 temp; local [all...] |
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_fmsynth.c | 225 EAS_I32 temp; local 228 temp = (EAS_I32) nLogRate << 7; 229 temp += ((EAS_I32) nKeyNumber - EG_SCALE_PIVOT_POINT) * (EAS_I32) nEGScale; 232 temp = max(temp, 0); 233 temp = min(temp, 32767); 237 return fmRateTable[temp >> 8]; 401 EAS_I32 temp; local 422 temp = (EAS_I32) pChannel->pan - 64 518 EAS_I32 temp; local 627 EAS_U32 temp; local 730 EAS_I32 temp; local 806 EAS_I32 temp; local [all...] |
/external/chromium/base/memory/ |
scoped_nsobject.h | 64 NST* temp = that.object_; local 66 object_ = temp; 73 NST* temp = object_; variable 75 return temp; 137 id temp = that.object_; local 139 object_ = temp; 146 id temp = object_; variable 148 return temp;
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility_mac.mm | 38 BrowserAccessibilityCocoa* temp = browser_accessibility_cocoa_; 41 [temp release];
|
/external/chromium_org/base/mac/ |
scoped_cffiledescriptorref.h | 61 CFFileDescriptorRef temp = fdref_; variable 63 return temp;
|
scoped_launch_data.h | 61 launch_data_t temp = object_; variable 63 return temp;
|
/external/chromium_org/net/disk_cache/ |
mapped_file_posix.cc | 34 scoped_ptr<char[]> temp(new char[temp_len]); 35 if (!Read(temp.get(), temp_len, 0))
|
mapped_file_win.cc | 32 scoped_ptr<char[]> temp(new char[temp_len]); 33 if (!Read(temp.get(), temp_len, 0))
|
/external/chromium_org/ppapi/cpp/extensions/ |
optional.h | 85 T* temp = value_; local 87 other->value_ = temp;
|
/external/chromium_org/third_party/sqlite/src/test/ |
backup2.test | 94 db restore temp bu1.db 95 dbcksum db temp 100 db backup temp bu2.db 111 set rc [catch {db backup temp bu2.db} res] 123 set rc [catch {db backup temp bu2.db} res] 148 set rc [catch {db restore temp bu3.db} res] 156 set rc [catch {db restore temp bu3.db} res] 164 set rc [catch {db restore temp bu2.db} res]
|
/external/libsepol/src/ |
sidtab.c | 174 sidtab_node_t *last, *cur, *temp; local 191 temp = cur; 193 context_destroy(&temp->context); 194 free(temp); 290 sidtab_ptr_t cur, temp; local 298 temp = cur; 300 context_destroy(&temp->context); 301 free(temp);
|