/third_party/toybox/toys/pending/ |
H A D | sulogin.c | 86 char *shell = NULL, *pass = NULL, **temp = forbid; in sulogin_main() local 98 for (temp = forbid; *temp; temp++) unsetenv(*temp); in sulogin_main()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_dns_record.c | 243 ares_dns_qd_t *temp = NULL; in ares_dns_record_query_add() local 255 temp = ares_realloc_zero(dnsrec->qd, sizeof(*temp) * (dnsrec->qdalloc), in ares_dns_record_query_add() 256 sizeof(*temp) * alloc_cnt); in ares_dns_record_query_add() 257 if (temp == NULL) { in ares_dns_record_query_add() 262 dnsrec->qd = temp; in ares_dns_record_query_add() 327 ares_dns_rr_t *temp = NULL; in ares_dns_record_rr_prealloc() local 356 temp = ares_realloc_zero(*rr_ptr, sizeof(*temp) * (*rr_alloc), in ares_dns_record_rr_prealloc() 357 sizeof(*temp) * cn in ares_dns_record_rr_prealloc() 1073 unsigned char *temp = ares_malloc(alloclen); ares_dns_rr_set_bin() local 1121 char *temp = NULL; ares_dns_rr_set_str() local 1177 void *temp; ares_dns_rr_set_opt_own() local 1211 unsigned char *temp = NULL; ares_dns_rr_set_opt() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_detelecine.c | 54 AVFrame *temp; member 140 s->temp = ff_get_video_buffer(inlink, inlink->w, inlink->h); in config_input() 141 if (!s->temp) in config_input() 205 av_image_copy_plane(s->temp->data[i], s->temp->linesize[i], in filter_frame() 237 s->temp->data[i], s->temp->linesize[i], in filter_frame() 265 s->temp->data[i] + s->temp->linesize[i] * !s->first_field, in filter_frame() 266 s->temp in filter_frame() [all...] |
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | CaseIterator.java | 292 String[] temp = new String[s.size()]; 293 s.toArray(temp); 294 fromCaseFold2.put(key, temp); 368 for (String temp = ci.next(); temp != null; temp = ci.next()) { 369 closure.add(temp); 375 String temp; 376 while (null != (temp = ci.next())) { 377 closure.add(temp); [all...] |
/third_party/vixl/src/ |
H A D | pool-manager-impl.h | 230 PoolObject<T> temp(label_base); in MustEmit() 231 temp.RestrictRange(reference->min_object_location_, in MustEmit() 233 temp.RestrictAlignment(reference->object_alignment_); in MustEmit() 235 temp.RestrictRange(existing_object->min_location_, in MustEmit() 237 temp.RestrictAlignment(existing_object->alignment_); in MustEmit() 242 T last_reachable = AlignDown(temp.max_location_, temp.alignment_); in MustEmit() 261 // Will temp be the last object in objects_? in MustEmit() 262 if (PoolObjectLessThan(last, temp)) { in MustEmit() 263 checkpoint = UpdateCheckpointForObject(checkpoint, &temp); in MustEmit() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | progress_data.h | 59 double temp = value_ + (stepValue_ * num); in MoveSteps() local 60 if (temp < minValue_) { in MoveSteps() 62 } else if (temp > maxValue_) { in MoveSteps() 65 value_ = temp; in MoveSteps()
|
/third_party/libuv/test/ |
H A D | test-uname.c | 35 char temp[256]; in TEST_IMPL() local 54 snprintf(temp, sizeof(temp), "%s.%s", buf.version, buf.release); in TEST_IMPL() 55 ASSERT_OK(strcmp(buffer.release, temp)); in TEST_IMPL()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/ |
H A D | DumbSubsetter.java | 35 Set<TableSubsetter> temp = new HashSet<TableSubsetter>(); 36 temp.add(new GlyphTableSubsetter()); 37 temp.add(new CMapTableSubsetter()); 38 tableSubsetters = temp;
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
H A D | echo.c | 76 int temp = tolower(*c); in echo_main() local 77 if (temp>='a' && temp<='f') { in echo_main() 78 out = (out*16)+temp-'a'+10; in echo_main()
|
/third_party/toybox/toys/posix/ |
H A D | echo.c | 78 int temp = tolower(*c); in echo_main() local 79 if (temp>='a' && temp<='f') { in echo_main() 80 out = (out*16)+temp-'a'+10; in echo_main()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | destructuringArrayBindingPatternAndAssignment1ES6.js | 42 var temp = [1,2,3] variable 43 var [c0, c1] = [...temp]; 88 var temp = [1, 2, 3];
variable 89 var [c0, c1] = [...temp];
|
H A D | destructuringVariableDeclaration1ES5.js | 10 var temp = { t1: true, t2: "false" }; 11 var [b2 = 3, b3 = true, b4 = temp] = [3, false, { t1: false, t2: "hello" }]; 12 var [b5 = 3, b6 = true, b7 = temp] = [undefined, undefined, undefined]; 61 var temp = { t1: true, t2: "false" };
62 var _e = [3, false, { t1: false, t2: "hello" }], _f = _e[0], b2 = _f === void 0 ? 3 : _f, _g = _e[1], b3 = _g === void 0 ? true : _g, _h = _e[2], b4 = _h === void 0 ? temp : _h;
63 var _j = [undefined, undefined, undefined], _k = _j[0], b5 = _k === void 0 ? 3 : _k, _l = _j[1], b6 = _l === void 0 ? true : _l, _m = _j[2], b7 = _m === void 0 ? temp : _m;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | state_style_manager.h | 91 auto temp = currentState_ | state; in UpdateCurrentUIState() local 92 if (temp != currentState_) { in UpdateCurrentUIState() 93 currentState_ = temp; in UpdateCurrentUIState() 106 auto temp = currentState_ ^ state; in ResetCurrentUIState() local 107 if (temp != currentState_) { in ResetCurrentUIState() 108 currentState_ = temp; in ResetCurrentUIState()
|
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/ |
H A D | atomics.h | 49 int32_t temp = v; in AtomicIncrementIfNotZero() local 51 if (v == temp) { in AtomicIncrementIfNotZero() 52 return temp; in AtomicIncrementIfNotZero() 98 int32_t temp = v; in AtomicIncrementIfNotZero() local 99 if (__atomic_compare_exchange_n(a, &v, temp + 1, false, __ATOMIC_RELAXED, __ATOMIC_RELAXED)) { in AtomicIncrementIfNotZero() 100 return temp; in AtomicIncrementIfNotZero()
|
/third_party/jerryscript/jerry-libm/ |
H A D | log2.c | 58 double_accessor temp; in log2() local 89 temp.dbl = x; in log2() 90 temp.as_int.hi = hx | (i ^ 0x3ff00000); /* normalize x or x/2 */ in log2() 93 f = temp.dbl - 1.0; in log2() 135 temp.dbl = hi; in log2() 136 temp.as_int.lo = 0; in log2()
|
/third_party/icu/icu4c/source/test/perf/strsrchperf/ |
H A D | strsrchperf.cpp | 41 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen)); in StringSearchPerformanceTest() 43 temp[i] = src[start++]; in StringSearchPerformanceTest() 45 pttrn = temp; /* store word in pttrn */ in StringSearchPerformanceTest() 60 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen)); in StringSearchPerformanceTest() local 62 temp[i] = src[start++]; in StringSearchPerformanceTest() 64 pttrn = temp; /* store word in pttrn */ in StringSearchPerformanceTest()
|
/third_party/lzma/C/ |
H A D | Delta.c | 18 Byte temp[DELTA_STATE_SIZE];
in Delta_Encode() local 26 temp[i] = state[i];
in Delta_Encode() 36 *data++ = (Byte)(b - temp[i]);
in Delta_Encode() 37 temp[i] = b;
in Delta_Encode() 47 state[k] = temp[i++];
in Delta_Encode() 81 --p; *p = (Byte)(*p - temp[--dif]);
in Delta_Encode()
|
/foundation/arkui/ace_engine/frameworks/base/geometry/ng/ |
H A D | size_t.h | 213 auto temp = width_ > size.width_ ? width_ : size.width_; in UpdateWidthWhenLarger() local 214 if (width_ != temp) { in UpdateWidthWhenLarger() 217 width_ = temp; in UpdateWidthWhenLarger() 226 auto temp = height_ > size.height_ ? height_ : size.height_; in UpdateHeightWhenLarger() local 227 if (height_ != temp) { in UpdateHeightWhenLarger() 230 height_ = temp; in UpdateHeightWhenLarger() 246 auto temp = width_ < size.width_ ? width_ : size.width_; in UpdateWidthWhenSmaller() local 247 if (width_ != temp) { in UpdateWidthWhenSmaller() 250 width_ = temp; in UpdateWidthWhenSmaller() 259 auto temp [all...] |
/third_party/node/src/ |
H A D | util-inl.h | 231 uint16_t temp; in SwapBytes16() local 232 for (size_t i = 0; i < nbytes; i += sizeof(temp)) { in SwapBytes16() 233 memcpy(&temp, &data[i], sizeof(temp)); in SwapBytes16() 234 temp = BSWAP_2(temp); in SwapBytes16() 235 memcpy(&data[i], &temp, sizeof(temp)); in SwapBytes16() 254 uint32_t temp; in SwapBytes32() local 255 for (size_t i = 0; i < nbytes; i += sizeof(temp)) { in SwapBytes32() 277 uint64_t temp; SwapBytes64() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | radeon_program_tex.c | 63 unsigned temp = rc_find_free_temporary(&compiler->Base); in scale_texcoords() local 69 inst_mov->U.I.DstReg.Index = temp; in scale_texcoords() 78 inst->U.I.SrcReg[0].Index = temp; in scale_texcoords() 86 unsigned temp = rc_find_free_temporary(&compiler->Base); in projective_divide() local 91 inst_rcp->U.I.DstReg.Index = temp; in projective_divide() 102 inst_mul->U.I.DstReg.Index = temp; in projective_divide() 105 inst_mul->U.I.SrcReg[1].Index = temp; in projective_divide() 111 inst->U.I.SrcReg[0].Index = temp; in projective_divide() 167 /* Redirect TEX to a new temp. */ in radeonTransformTEX() 279 * MUL temp, texcoor in radeonTransformTEX() 301 unsigned temp = rc_find_free_temporary(c); radeonTransformTEX() local 410 unsigned temp = rc_find_free_temporary(c); radeonTransformTEX() local [all...] |
/third_party/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zHandler.cpp | 209 char temp[16];
in GetArchiveProperty() local 213 GetLzma2String(temp, pm.Lzma2Prop);
in GetArchiveProperty() 214 s += temp;
in GetArchiveProperty() 219 GetStringForSizeValue(temp, pm.LzmaDic);
in GetArchiveProperty() 220 s += temp;
in GetArchiveProperty() 393 char temp[kTempSize];
in SetMethodToProp() local 395 temp[--pos] = 0;
in SetMethodToProp() 521 MyStringCopy(temp + pos, name);
in SetMethodToProp() 524 char *dest = temp + pos + nameLen;
in SetMethodToProp() 529 temp[po in SetMethodToProp() [all...] |
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | ucbuf.cpp | 717 char16_t* temp = buf->currentPos; in ucbuf_readline() local 725 c = *temp++; in ucbuf_readline() 729 if(temp>=buf->bufLimit && buf->currentPos == buf->buffer){ in ucbuf_readline() 743 if(c ==0x0d && temp <= buf->bufLimit && *temp == 0x0a ){ in ucbuf_readline() 744 *len = (int32_t)(temp++ - buf->currentPos); in ucbuf_readline() 746 buf->currentPos = temp; in ucbuf_readline() 751 if (temp>=buf->bufLimit|| ucbuf_isCharNewLine(c)){ /* Unipad inserts 2028 line separators! */ in ucbuf_readline() 752 *len = (int32_t)(temp - buf->currentPos); in ucbuf_readline() 754 buf->currentPos = temp; in ucbuf_readline() [all...] |
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | ucbuf.cpp | 717 UChar* temp = buf->currentPos; in ucbuf_readline() local 725 c = *temp++; in ucbuf_readline() 729 if(temp>=buf->bufLimit && buf->currentPos == buf->buffer){ in ucbuf_readline() 743 if(c ==0x0d && temp <= buf->bufLimit && *temp == 0x0a ){ in ucbuf_readline() 744 *len = (int32_t)(temp++ - buf->currentPos); in ucbuf_readline() 746 buf->currentPos = temp; in ucbuf_readline() 751 if (temp>=buf->bufLimit|| ucbuf_isCharNewLine(c)){ /* Unipad inserts 2028 line separators! */ in ucbuf_readline() 752 *len = (int32_t)(temp - buf->currentPos); in ucbuf_readline() 754 buf->currentPos = temp; in ucbuf_readline() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | ucbuf.cpp | 717 UChar* temp = buf->currentPos; in ucbuf_readline() local 725 c = *temp++; in ucbuf_readline() 729 if(temp>=buf->bufLimit && buf->currentPos == buf->buffer){ in ucbuf_readline() 743 if(c ==0x0d && temp <= buf->bufLimit && *temp == 0x0a ){ in ucbuf_readline() 744 *len = (int32_t)(temp++ - buf->currentPos); in ucbuf_readline() 746 buf->currentPos = temp; in ucbuf_readline() 751 if (temp>=buf->bufLimit|| ucbuf_isCharNewLine(c)){ /* Unipad inserts 2028 line separators! */ in ucbuf_readline() 752 *len = (int32_t)(temp - buf->currentPos); in ucbuf_readline() 754 buf->currentPos = temp; in ucbuf_readline() [all...] |
/foundation/distributeddatamgr/preferences/frameworks/js/napi/sendable_preferences/src/ |
H A D | napi_preferences_helper.cpp | 50 napi_value temp = nullptr; in ParseParameters() local 51 napi_get_named_property(env, argv[1], NAME, &temp); in ParseParameters() 52 PRE_CHECK_RETURN_ERR_SET(temp && Utils::ConvertFromSendable(env, temp, context->name) == napi_ok, in ParseParameters() 58 temp = nullptr; in ParseParameters() 59 napi_get_named_property(env, argv[1], DATA_GROUP_ID, &temp); in ParseParameters() 61 napi_status status = napi_typeof(env, temp, &type); in ParseParameters() 63 PRE_CHECK_RETURN_ERR_SET(Utils::ConvertFromSendable(env, temp, context->dataGroupId) == napi_ok, in ParseParameters()
|