/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | near_lossless_enc.c | 102 uint32_t* const temp = prev_row; in NearLossless() local 105 next_row = temp; in NearLossless()
|
/third_party/skia/tests/ |
H A D | WrappedSurfaceCopyOnWriteTest.cpp | 146 // its back. temp exists just to replace dst's ops task as the active one. in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() 147 auto temp = dContext->priv().makeSFC(ii, SkBackingFit::kExact); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local 148 temp->clear(SkPMColor4f{0, 0, 0, 0}); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
|
/third_party/skia/experimental/lowp-basic/ |
H A D | bilerp-study.cpp | 63 int64_t temp = fty * (bottom - top) + top * 65536LL; in full_res_bilerp() local 64 int64_t rounded = temp + (1LL << 31); in full_res_bilerp()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_color_unquantize.cpp | 395 int temp; in hdr_rgbo_unpack() local 399 temp = red; in hdr_rgbo_unpack() 401 green = temp; in hdr_rgbo_unpack() 404 temp = red; in hdr_rgbo_unpack() 406 blue = temp; in hdr_rgbo_unpack()
|
/third_party/lzma/CPP/Windows/ |
H A D | FileDir.cpp | 672 UString temp;
in GetCurrentDir() local 673 const DWORD len2 = ::GetCurrentDirectoryW(len, temp.GetBuf(len));
in GetCurrentDir() 676 temp.ReleaseBuf_CalcLen(len);
in GetCurrentDir() 677 if (temp.Len() != len2 || len - 1 != len2)
in GetCurrentDir() 685 path = us2fs(temp);
in GetCurrentDir()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-policy2c/ |
H A D | minimal-secure-streams.c | 50 purify_csymbol(const char *in, char *temp, size_t templen) in purify_csymbol() argument 52 const char *otemp = temp; in purify_csymbol() 59 *temp++ = *in; in purify_csymbol() 61 *temp++ = '_'; in purify_csymbol() 66 *temp = '\0'; in purify_csymbol()
|
/third_party/ntfs-3g/ntfsprogs/ |
H A D | utils.c | 579 char *temp; in utils_inode_get_name() local 581 temp = ntfs_malloc(30); in utils_inode_get_name() 582 if (!temp) in utils_inode_get_name() 584 snprintf(temp, 30, "<MFT%llu>", (unsigned in utils_inode_get_name() 586 names[i] = temp; in utils_inode_get_name()
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_blend.c | 205 double temp; in compute_blend_ref_term() local 234 temp = MIN2(src[3], 1.0f - dst[3]); in compute_blend_ref_term() 235 term[0] = factor[0] * temp; /* R */ in compute_blend_ref_term() 236 term[1] = factor[1] * temp; /* G */ in compute_blend_ref_term() 237 term[2] = factor[2] * temp; /* B */ in compute_blend_ref_term()
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | compute_memory_pool.c | 146 struct r600_resource *temp = NULL; in compute_memory_grow_defrag_pool() local 148 temp = r600_compute_buffer_alloc_vram(pool->screen, new_size_in_dw * 4); in compute_memory_grow_defrag_pool() 150 if (temp != NULL) { in compute_memory_grow_defrag_pool() 152 struct pipe_resource *dst = (struct pipe_resource *)temp; in compute_memory_grow_defrag_pool() 161 pool->bo = temp; in compute_memory_grow_defrag_pool()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | json_c_generator.py | 149 temp = printVal 150 temp = printVal.replace("@name", baseType) 151 temp = temp.replace("FORMAT", self.baseTypeDict[baseType]) 152 write(temp, file=self.outFile)
|
/third_party/toybox/kconfig/lxdialog/ |
H A D | util.c | 378 int i, temp; in print_button() local 384 temp = strspn(label, " "); in print_button() 385 label += temp; in print_button() 388 for (i = 0; i < temp; i++) in print_button() 399 wmove(win, y, x + temp + 1); in print_button()
|
/third_party/ffmpeg/libavcodec/ |
H A D | jpeglsenc.c | 94 int temp; in ls_encode_runterm() local 96 temp = state->A[Q]; in ls_encode_runterm() 98 temp += state->N[Q] >> 1; in ls_encode_runterm() 99 for (k = 0; (state->N[Q] << k) < temp; k++) in ls_encode_runterm()
|
H A D | libjxlenc.c | 397 uint8_t *temp; in libjxl_encode_frame() local 399 temp = av_realloc(ctx->buffer, new_size); in libjxl_encode_frame() 400 if (!temp) in libjxl_encode_frame() 402 ctx->buffer = temp; in libjxl_encode_frame()
|
/third_party/ffmpeg/libavfilter/ |
H A D | src_avsynctest.c | 277 int64_t delta, temp, intpart; in video_frame() local 314 temp = s->vpts + s->vdelay.num; in video_frame() 315 intpart = av_rescale_rnd(temp, outlink->time_base.num, outlink->time_base.den, AV_ROUND_NEAR_INF); in video_frame() 316 intpart = temp - av_rescale_rnd(intpart, outlink->time_base.den, outlink->time_base.num, AV_ROUND_NEAR_INF); in video_frame()
|
/third_party/curl/src/ |
H A D | tool_doswin.c | 676 struct curl_slist *temp; in GetLoadedModulePaths() local 689 temp = curl_slist_append(slist, path); in GetLoadedModulePaths() 690 if(!temp) in GetLoadedModulePaths() 692 slist = temp; in GetLoadedModulePaths()
|
/third_party/ffmpeg/tools/ |
H A D | sidxindex.c | 146 struct Track **temp; in handle_file() local 160 temp = av_realloc_array(tracks->tracks, tracks->nb_tracks + 1, in handle_file() 162 if (!temp) { in handle_file() 167 tracks->tracks = temp; in handle_file()
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | TransliterationChart.java | 134 String temp = fallbacks[i].transliterate(source); in main() 135 if (!temp.equals("") && !temp.equals(source)) item = temp; in main()
|
/third_party/gptfdisk/ |
H A D | gptcl.cc | 72 uint64_t temp; // temporary variable; free to use in any case in DoOptions() local 259 temp = FindFirstInLargest(); in DoOptions() 260 Align(&temp); in DoOptions() 261 cout << temp << "\n"; in DoOptions() local
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | TimeUnitFormat.java | 273 Number temp = null; in parseObject() 280 temp = (Number) tempObj; in parseObject() 286 temp = format.parse(tempObj.toString()); in parseObject() 294 resultNumber = temp; in parseObject()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
H A D | BreakIteratorTest.java | 93 String temp; in debugLogln() 101 temp = Integer.toHexString(c); in debugLogln() 102 out.append(zeros.substring(0, 4 - temp.length())); in debugLogln() 103 out.append(temp); in debugLogln()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | BreakIteratorTest.java | 90 String temp; in debugLogln() 98 temp = Integer.toHexString(c); in debugLogln() 99 out.append(zeros.substring(0, 4 - temp.length())); in debugLogln() 100 out.append(temp); in debugLogln()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TimeUnitFormat.java | 275 Number temp = null; in parseObject() 282 temp = (Number) tempObj; in parseObject() 288 temp = format.parse(tempObj.toString()); in parseObject() 296 resultNumber = temp; in parseObject()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | choicfmt.cpp | 174 char temp[DBL_DIG + 16]; in dtos() local 175 char *itrPtr = temp; in dtos() 178 sprintf(temp, "%.*g", DBL_DIG, value); in dtos() 217 string = UnicodeString(temp, -1, US_INV); /* invariant codepage */ in dtos()
|
H A D | umsg.cpp | 534 UnicodeString temp; in umsg_vparse() local 579 args[i].getString(temp); in umsg_vparse() 580 len = temp.length(); in umsg_vparse() 581 temp.extract(0,len,aString); in umsg_vparse()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_builtin_builder.c | 125 nir_ssa_def *temp = nir_bcsel(b, nir_feq(b, maxc, finf), finfvec, svec); in nir_normalize() local 126 nir_ssa_def *res = nir_fmul(b, temp, nir_frsq(b, nir_fdot(b, temp, temp))); in nir_normalize()
|