Home
last modified time | relevance | path

Searched refs:temp (Results 1726 - 1750 of 4520) sorted by relevance

1...<<61626364656667686970>>...181

/kernel/liteos_a/testsuites/unittest/process/basic/process/smoke/
H A Dprocess_test_010.cpp97 int temp = GetCpuCount(); in Testcase() local
98 if (temp <= 1) { in Testcase()
/third_party/libwebsockets/include/libwebsockets/
H A Dlws-jose.h189 * \param temp: parent-owned buffer to "allocate" elements into
190 * \param temp_len: amount of space available in temp
193 * *\p temp_len is updated to reflect the amount of \p temp used if successful.
197 const char *buf, int len, char *temp, int *temp_len);
205 * \param temp: parent-owned buffer to "allocate" elements into
206 * \param temp_len: amount of space available in temp
209 * *\p temp_len is updated to reflect the amount of \p temp used if successful.
213 const char *buf, int len, char *temp, int *temp_len);
/third_party/lzma/CPP/Common/
H A DTextConfig.cpp64 const AString temp (GetIDString(((const char *)s) + pos, finishPos)); in GetTextConfig()
65 if (!ConvertUTF8ToUnicode(temp, pair.ID)) in GetTextConfig()
/third_party/ltp/testcases/commands/keyctl/
H A Dkeyctl01.sh83 keyctl request2 user debug:fred negate @t >temp 2>&1
84 grep -q -E "quota exceeded" temp
/third_party/ltp/testcases/commands/unshare/
H A Dunshare01.sh117 eval ${unshare_cmd} > temp 2>&1
123 grep -q -E "unrecognized option|invalid option|Invalid argument|Operation not permitted" temp
134 check_id "$(cat temp)" "${exp_result}" "${unshare_cmd}"
/third_party/lzma/C/
H A DBcj2.h86 CBcj2Dec::temp can contain up to 4 bytes for writing to (dest).
103 UInt32 temp; /* Byte temp[4]; */ member
176 processed bytes (up to 4 bytes) from src to internal CBcj2Enc::temp[] buffer.
179 processed data and data copied to (temp[]) buffer)
180 That data from (temp[]) buffer will be used in further calls.
276 that doesn't include data in temp[] */
284 unsigned tempPos; /* the number of bytes that were copied to temp[] buffer
286 // Byte temp[4]; // for marker version
287 Byte temp[ member
[all...]
/third_party/skia/third_party/externals/oboe/samples/iolib/src/main/cpp/player/
H A DSampleBuffer.cpp58 double temp = in resampleData() local
62 int32_t numOutFrames = (int32_t)(temp + 0.5); in resampleData()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-priority-queue.hh145 item_t temp = heap[a];
147 heap[b] = temp;
/third_party/skia/experimental/lowp-basic/
H A DQMath.h48 int32_t temp = (int32_t)r * (int32_t)s + rounding; in simulate_ssse3_mm_mulhrs_epi16()
49 return (int16_t)(temp >> 15); in simulate_ssse3_mm_mulhrs_epi16()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/platform/rk/
H A Drk.c292 int temperature, temp; in rk_model_static_power() local
311 temp = temperature / 0x3E8; in rk_model_static_power()
312 temp_squared = temp * temp; in rk_model_static_power()
313 temp_cubed = temp_squared * temp; in rk_model_static_power()
314 temp_scaling_factor = (ts[0x03] * temp_cubed) + (ts[0x02] * temp_squared) + (ts[1] * temp) + ts[0]; in rk_model_static_power()
/device/soc/rockchip/rk2206/sdk_liteos/platform/network/
H A Dconfig_network.c318 char temp[SN_STRING_MAXSIZE]; in SetWifiModeOn() local
338 memset_s(temp, sizeof(temp), 0, sizeof(temp)); in SetWifiModeOn()
340 if (LZ_HARDWARE_SUCCESS == VendorGet(VENDOR_ID_SN, temp, SN_STRING_MAXSIZE)) { in SetWifiModeOn()
341 if (strcmp(temp, "LZ01") != 0) { in SetWifiModeOn()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/platform/rk/
H A Drk.c307 int temperature, temp; in rk_model_static_power() local
317 MALI_DEBUG_PRINT(2, ("fail to read temp: %d\n", ret)); in rk_model_static_power()
327 temp = temperature / 1000; in rk_model_static_power()
328 temp_squared = temp * temp; in rk_model_static_power()
329 temp_cubed = temp_squared * temp; in rk_model_static_power()
333 + (ts[1] * temp) in rk_model_static_power()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/platform/arm/
H A Darm.c189 int temperature, temp; in arm_model_static_power() local
210 temp = temperature / 1000; in arm_model_static_power()
211 temp_squared = temp * temp; in arm_model_static_power()
212 temp_cubed = temp_squared * temp; in arm_model_static_power()
216 + (4700 * temp) in arm_model_static_power()
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_arc_label.cpp267 Rect temp = mask; in DrawArcText() local
269 temp.SetLeft(center.x - radius_); in DrawArcText()
270 temp.SetTop(center.y - radius_); in DrawArcText()
271 temp.SetWidth(radius_ * 2); // 2 mean diameter in DrawArcText()
272 temp.SetHeight(radius_ * 2); in DrawArcText()
276 DrawLabel::DrawArcText(gfxDstBuffer, temp, arcLabelText_->GetText(), center, arcLabelText_->GetFontId(), in DrawArcText()
/foundation/communication/ipc/ipc/native/src/core/source/
H A Dmessage_parcel.cpp225 sptr<IRemoteObject> temp = ReadObject<IRemoteObject>(); in ReadRemoteObject() local
227 if (temp != nullptr && !temp->IsProxyObject()) { in ReadRemoteObject()
231 sptr<IRemoteObject> proxy = current->QueryDBinderCallbackProxy(temp); in ReadRemoteObject()
233 temp = proxy; in ReadRemoteObject()
238 return temp; in ReadRemoteObject()
/foundation/deviceprofile/device_info_manager/old/tools/dp/src/
H A Ddp_command.cpp411 std::string temp; in HandleSyncOption() local
412 while (std::getline(input, temp, ' ')) { in HandleSyncOption()
413 deviceIds.push_back(temp); in HandleSyncOption()
455 std::string temp; in HandleSubscribeOption() local
456 while (std::getline(input, temp, ' ')) { in HandleSubscribeOption()
457 serviceIds.push_back(temp); in HandleSubscribeOption()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dabs_result_set.cpp190 int64_t temp = 0; in GetInt() local
191 int errCode = GetLong(columnIndex, temp); in GetInt()
195 value = int32_t(temp); in GetInt()
403 std::string temp = name; in GetColumnIndex() local
404 std::transform(name.begin(), name.end(), temp.begin(), ::tolower); in GetColumnIndex()
405 if (lowerName == temp) { in GetColumnIndex()
/kernel/linux/linux-5.10/drivers/char/tpm/
H A Dtpm_i2c_nuvoton.c494 u32 temp; in get_vid() local
499 rc = i2c_nuvoton_read_buf(client, TPM_VID_DID_RID, 4, (u8 *)&temp); in get_vid()
504 if (memcmp(&temp, vid_did_rid_value, sizeof(vid_did_rid_value))) { in get_vid()
511 (u8 *) (&temp)); in get_vid()
516 if (memcmp(&temp, vid_did_rid_value, in get_vid()
521 *res = temp; in get_vid()
/kernel/linux/linux-6.6/arch/m68k/coldfire/
H A Dm53xx.c472 int fref, temp, fout, mfd; in clock_pll() local
490 /* Multiplying by 100 when calculating the temp value, in clock_pll()
494 temp = 100 * fsys / fref; in clock_pll()
495 mfd = 4 * BUSDIV * temp / 100; in clock_pll()
547 u32 temp; in clock_limp() local
557 temp = readw(MCF_CCM_CDR) & MCF_CCM_CDR_SSIDIV(0xF); in clock_limp()
560 writew(MCF_CCM_CDR_LPDIV(div) | MCF_CCM_CDR_SSIDIV(temp), MCF_CCM_CDR); in clock_limp()
/kernel/linux/linux-5.10/tools/thermal/tmon/
H A Dtui.c107 * list cooling devices + "set temp" entry; wraps after 5 rows, if they fit
299 /* save last choice for target temp */ in show_dialogue()
555 x = ptdata.tzi[tz].tp[j].temp / 1000; in draw_tp_line()
559 syslog(LOG_INFO, "%s:tz %d tp %d temp = %lu\n", __func__, in draw_tp_line()
560 tz, j, ptdata.tzi[tz].tp[j].temp); in draw_tp_line()
583 int temp = trec[cur_thermal_record].temp[i] / 1000; in show_data_w() local
587 /* y at tz temp data line */ in show_data_w()
590 ptdata.tzi[i].instance, temp); in show_data_w()
591 draw_hbar(thermal_data_window, y, TDATA_LEFT, temp, ACS_RARRO in show_data_w()
[all...]
/kernel/linux/linux-5.10/drivers/i2c/algos/
H A Di2c-algo-bit.c361 const unsigned char *temp = msg->buf; in sendbytes() local
368 retval = i2c_outb(i2c_adap, *temp); in sendbytes()
373 temp++; in sendbytes()
420 unsigned char *temp = msg->buf; in readbytes() local
427 *temp = inval; in readbytes()
433 temp++; in readbytes()
/kernel/linux/linux-5.10/scripts/gcc-plugins/
H A Dlatent_entropy_plugin.c370 tree temp; in __perturb_latent_entropy() local
374 temp = create_var(long_unsigned_type_node, "temp_latent_entropy"); in __perturb_latent_entropy()
379 assign = gimple_build_assign(temp, latent_entropy_decl); in __perturb_latent_entropy()
385 assign = create_assign(op, temp, temp, local_entropy); in __perturb_latent_entropy()
390 assign = gimple_build_assign(latent_entropy_decl, temp); in __perturb_latent_entropy()
/kernel/linux/linux-5.10/sound/soc/sof/
H A Dcontrol.c22 int temp = 0; in update_mute_led() local
30 temp |= mask; in update_mute_led()
35 if (temp == scontrol->led_ctl.led_value) in update_mute_led()
38 scontrol->led_ctl.led_value = temp; in update_mute_led()
42 ledtrig_audio_set(LED_AUDIO_MUTE, temp ? LED_OFF : LED_ON); in update_mute_led()
44 ledtrig_audio_set(LED_AUDIO_MICMUTE, temp ? LED_OFF : LED_ON); in update_mute_led()
/kernel/linux/linux-5.10/tools/perf/util/
H A Dtrace-event-info.c492 int fd, bool temp) in tracing_data_get()
508 tdata->temp = temp; in tracing_data_get()
511 if (temp) { in tracing_data_get()
517 pr_debug("Can't make temp file"); in tracing_data_get()
530 * Set the temp file the default output, so all the in tracing_data_get()
559 * the default output file in case we used temp file. in tracing_data_get()
561 if (temp) { in tracing_data_get()
578 if (tdata->temp) { in tracing_data_put()
594 * directly, no temp fil in read_tracing_data()
491 tracing_data_get(struct list_head *pattrs, int fd, bool temp) tracing_data_get() argument
[all...]
/kernel/linux/linux-5.10/lib/
H A Ddecompress_bunzip2.c235 unsigned char length[MAX_SYMBOLS], temp[MAX_HUFCODE_BITS+1]; in get_next_block() local
306 * temp[] and limit[]. */ in get_next_block()
309 temp[i] = limit[i] = 0; in get_next_block()
316 temp[length[i]]++; in get_next_block()
325 pp += temp[i]; in get_next_block()
338 base[i+1] = pp-(t += temp[i]); in get_next_block()
342 limit[maxLen] = pp+temp[maxLen]-1; in get_next_block()
609 /* (previous is just a convenient unused temp variable here) */ in read_bunzip()

Completed in 19 milliseconds

1...<<61626364656667686970>>...181