/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | adt7475.c | 208 u16 temp[7][3]; member 226 /* Given a temp value, convert it to register value */ 246 /* Given a register value, convert it to a real temp value */ 399 out = data->temp[sattr->nr][sattr->index]; in temp_show() 408 out = reg2temp(data, data->temp[THERM][sattr->index]) - in temp_show() 419 out = (s8)data->temp[sattr->nr][sattr->index]; in temp_show() 437 /* All other temp values are in the configured format */ in temp_show() 438 out = reg2temp(data, data->temp[sattr->nr][sattr->index]); in temp_show() 452 int temp; in temp_store() local 460 /* We need the config register in all cases for temp < in temp_store() 657 int temp; point2_store() local [all...] |
H A D | nct7802.c | 206 u8 reg_temp, u8 reg_temp_low, int *temp) in nct7802_read_temp() 211 *temp = 0; in nct7802_read_temp() 224 *temp = (s16)t1 / 32 * 125; in nct7802_read_temp() 455 int err, temp; in temp_show() local 457 err = nct7802_read_temp(data, sattr->nr, sattr->index, &temp); in temp_show() 461 return sprintf(buf, "%d\n", temp); in temp_show() 580 static SENSOR_DEVICE_ATTR_2_RO(temp1_input, temp, 0x01, REG_TEMP_LSB); 581 static SENSOR_DEVICE_ATTR_2_RW(temp1_min, temp, 0x31, 0); 582 static SENSOR_DEVICE_ATTR_2_RW(temp1_max, temp, 0x30, 0); 583 static SENSOR_DEVICE_ATTR_2_RW(temp1_crit, temp, 205 nct7802_read_temp(struct nct7802_data *data, u8 reg_temp, u8 reg_temp_low, int *temp) nct7802_read_temp() argument [all...] |
/foundation/multimedia/audio_framework/services/audio_service/common/src/ |
H A D | volume_tools.cpp | 149 int64_t temp = 0; in ProcessOneFrame() local 155 temp = *ptr - UINT8_SHIFT; in ProcessOneFrame() 156 temp = (temp * vol) >> VOLUME_SHIFT; in ProcessOneFrame() 157 temp = temp < INT8_MIN ? INT8_MIN : (temp > INT8_MAX ? INT8_MAX : temp); in ProcessOneFrame() 158 *ptr = static_cast<uint8_t>(temp + UINT8_SHIFT); in ProcessOneFrame() 162 temp in ProcessOneFrame() [all...] |
/kernel/linux/linux-5.10/drivers/i2c/busses/ |
H A D | i2c-viapro.c | 130 int temp; in vt596_transaction() local 137 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { in vt596_transaction() 139 "Resetting...\n", temp); in vt596_transaction() 141 outb_p(temp, SMBHSTSTS); in vt596_transaction() 142 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { in vt596_transaction() 144 "(0x%02x)\n", temp); in vt596_transaction() 155 temp = inb_p(SMBHSTSTS); in vt596_transaction() 156 } while ((temp & 0x01) && (++timeout < MAX_TIMEOUT)); in vt596_transaction() 164 if (temp & 0x10) { in vt596_transaction() 170 if (temp in vt596_transaction() 314 unsigned char temp; vt596_probe() local [all...] |
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | adt7x10.c | 64 s16 temp[4]; /* Register values, member 146 int temp; in adt7x10_update_temp() local 154 temp = adt7x10_read_word(dev, ADT7X10_REG_TEMP[0]); in adt7x10_update_temp() 155 if (temp < 0) { in adt7x10_update_temp() 156 ret = temp; in adt7x10_update_temp() 161 data->temp[0] = temp; in adt7x10_update_temp() 177 for (i = 1; i < ARRAY_SIZE(data->temp); i++) { in adt7x10_fill_cache() 184 data->temp[i] = ret; in adt7x10_fill_cache() 198 static s16 ADT7X10_TEMP_TO_REG(long temp) in ADT7X10_TEMP_TO_REG() argument 246 long temp; adt7x10_temp_store() local [all...] |
H A D | nct7802.c | 189 u8 reg_temp, u8 reg_temp_low, int *temp) in nct7802_read_temp() 194 *temp = 0; in nct7802_read_temp() 207 *temp = (s16)t1 / 32 * 125; in nct7802_read_temp() 438 int err, temp; in temp_show() local 440 err = nct7802_read_temp(data, sattr->nr, sattr->index, &temp); in temp_show() 444 return sprintf(buf, "%d\n", temp); in temp_show() 563 static SENSOR_DEVICE_ATTR_2_RO(temp1_input, temp, 0x01, REG_TEMP_LSB); 564 static SENSOR_DEVICE_ATTR_2_RW(temp1_min, temp, 0x31, 0); 565 static SENSOR_DEVICE_ATTR_2_RW(temp1_max, temp, 0x30, 0); 566 static SENSOR_DEVICE_ATTR_2_RW(temp1_crit, temp, 188 nct7802_read_temp(struct nct7802_data *data, u8 reg_temp, u8 reg_temp_low, int *temp) nct7802_read_temp() argument [all...] |
/kernel/linux/linux-6.6/drivers/thermal/qcom/ |
H A D | qcom-spmi-temp-alarm.c | 74 long temp; member 149 * This function updates the internal temp value based on the 174 chip->temp = qpnp_tm_decode_temp(chip, stage_new) in qpnp_tm_update_temp_no_adc() 178 chip->temp = qpnp_tm_decode_temp(chip, stage_new + 1) in qpnp_tm_update_temp_no_adc() 187 static int qpnp_tm_get_temp(struct thermal_zone_device *tz, int *temp) in qpnp_tm_get_temp() argument 192 if (!temp) in qpnp_tm_get_temp() 196 *temp = DEFAULT_TEMP; in qpnp_tm_get_temp() 211 chip->temp = mili_celsius; in qpnp_tm_get_temp() 214 *temp = chip->temp; in qpnp_tm_get_temp() 219 qpnp_tm_update_critical_trip_temp(struct qpnp_tm_chip *chip, int temp) qpnp_tm_update_critical_trip_temp() argument 265 qpnp_tm_set_trip_temp(struct thermal_zone_device *tz, int trip_id, int temp) qpnp_tm_set_trip_temp() argument [all...] |
/kernel/linux/linux-6.6/drivers/i2c/busses/ |
H A D | i2c-viapro.c | 130 int temp; in vt596_transaction() local 137 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { in vt596_transaction() 139 "Resetting...\n", temp); in vt596_transaction() 141 outb_p(temp, SMBHSTSTS); in vt596_transaction() 142 if ((temp = inb_p(SMBHSTSTS)) & 0x1F) { in vt596_transaction() 144 "(0x%02x)\n", temp); in vt596_transaction() 155 temp = inb_p(SMBHSTSTS); in vt596_transaction() 156 } while ((temp & 0x01) && (++timeout < MAX_TIMEOUT)); in vt596_transaction() 164 if (temp & 0x10) { in vt596_transaction() 170 if (temp in vt596_transaction() 314 unsigned char temp; vt596_probe() local [all...] |
/third_party/mesa3d/src/amd/addrlib/src/core/ |
H A D | coord.cpp | 376 CoordEq temp = *this; 382 for (UINT_32 i = 0; i < temp.m_numBits; i++) 384 UINT_32 termSize = temp.m_eq[i].getsize(); 389 enum Dim dim = temp.m_eq[i][0].getdim(); 390 INT_8 ord = temp.m_eq[i][0].getord(); 397 temp.m_eq[i].Clear(); 417 for (UINT_32 i = 0; i < temp.m_numBits; i++) 419 UINT_32 termSize = temp.m_eq[i].getsize(); 424 enum Dim dim = temp.m_eq[i][0].getdim(); 425 INT_8 ord = temp [all...] |
/kernel/linux/linux-5.10/drivers/thermal/samsung/ |
H A D | exynos_tmu.c | 198 u8 temp); 200 u8 temp, u8 hyst); 204 void (*tmu_set_emulation)(struct exynos_tmu_data *data, int temp); 212 static int temp_to_code(struct exynos_tmu_data *data, u8 temp) in temp_to_code() argument 215 return temp + data->temp_error1 - EXYNOS_FIRST_POINT_TRIM; in temp_to_code() 217 return (temp - EXYNOS_FIRST_POINT_TRIM) * in temp_to_code() 266 int ret = 0, temp, hyst; in exynos_tmu_initialize() local 275 ret = tzd->ops->get_crit_temp(tzd, &temp); in exynos_tmu_initialize() 307 ret = tzd->ops->get_trip_temp(tzd, i, &temp); in exynos_tmu_initialize() 310 temp / in exynos_tmu_initialize() 362 exynos4210_tmu_set_trip_temp(struct exynos_tmu_data *data, int trip, u8 temp) exynos4210_tmu_set_trip_temp() argument 381 exynos4210_tmu_set_trip_hyst(struct exynos_tmu_data *data, int trip, u8 temp, u8 hyst) exynos4210_tmu_set_trip_hyst() argument 393 exynos4412_tmu_set_trip_temp(struct exynos_tmu_data *data, int trip, u8 temp) exynos4412_tmu_set_trip_temp() argument 410 exynos4412_tmu_set_trip_hyst(struct exynos_tmu_data *data, int trip, u8 temp, u8 hyst) exynos4412_tmu_set_trip_hyst() argument 449 exynos5433_tmu_set_trip_temp(struct exynos_tmu_data *data, int trip, u8 temp) exynos5433_tmu_set_trip_temp() argument 469 exynos5433_tmu_set_trip_hyst(struct exynos_tmu_data *data, int trip, u8 temp, u8 hyst) exynos5433_tmu_set_trip_hyst() argument 522 exynos7_tmu_set_trip_temp(struct exynos_tmu_data *data, int trip, u8 temp) exynos7_tmu_set_trip_temp() argument 537 exynos7_tmu_set_trip_hyst(struct exynos_tmu_data *data, int trip, u8 temp, u8 hyst) exynos7_tmu_set_trip_hyst() argument 653 exynos_get_temp(void *p, int *temp) exynos_get_temp() argument 683 get_emul_con_reg(struct exynos_tmu_data *data, unsigned int val, int temp) get_emul_con_reg() argument 711 exynos4412_tmu_set_emulation(struct exynos_tmu_data *data, int temp) exynos4412_tmu_set_emulation() argument 731 exynos_tmu_set_emulation(void *drv_data, int temp) exynos_tmu_set_emulation() argument 753 exynos_tmu_set_emulation(void *drv_data, int temp) exynos_tmu_set_emulation() argument [all...] |
/third_party/libwebsockets/lib/jose/jws/ |
H A D | jws.c | 59 char *temp; member 103 * We keep both b64u and decoded in temp mapped using map / map_b64, in lws_jws_json_cb() 109 args->jws->map_b64.buf[m] = args->temp; in lws_jws_json_cb() 113 memcpy(args->temp, ctx->buf, ctx->npos); in lws_jws_json_cb() 114 args->temp += ctx->npos; in lws_jws_json_cb() 119 args->jws->map.buf[m] = args->temp; in lws_jws_json_cb() 124 (char *)args->temp, *args->temp_len); in lws_jws_json_cb() 130 args->temp += n; in lws_jws_json_cb() 140 char *temp, int *temp_len) in lws_jws_json_parse() 147 args.temp in lws_jws_json_parse() 139 lws_jws_json_parse(struct lws_jws *jws, const uint8_t *buf, int len, char *temp, int *temp_len) lws_jws_json_parse() argument 192 lws_jws_dup_element(struct lws_jws_map *map, int idx, char *temp, int *temp_len, const void *in, size_t in_len, size_t actual_alloc) lws_jws_dup_element() argument 212 lws_jws_encode_b64_element(struct lws_jws_map *map, int idx, char *temp, int *temp_len, const void *in, size_t in_len) lws_jws_encode_b64_element() argument 234 lws_jws_randomize_element(struct lws_context *context, struct lws_jws_map *map, int idx, char *temp, int *temp_len, size_t random_len, size_t actual_alloc) lws_jws_randomize_element() argument 258 lws_jws_alloc_element(struct lws_jws_map *map, int idx, char *temp, int *temp_len, size_t len, size_t actual_alloc) lws_jws_alloc_element() argument 449 char temp[256]; lws_jws_sig_confirm() local 670 lws_jws_sig_confirm_compact_b64_map(struct lws_jws_map *map_b64, struct lws_jwk *jwk, struct lws_context *context, char *temp, int *temp_len) lws_jws_sig_confirm_compact_b64_map() argument 691 lws_jws_sig_confirm_compact_b64(const char *in, size_t len, struct lws_jws_map *map, struct lws_jwk *jwk, struct lws_context *context, char *temp, int *temp_len) lws_jws_sig_confirm_compact_b64() argument 712 lws_jws_sig_confirm_compact(struct lws_jws_map *map, struct lws_jwk *jwk, struct lws_context *context, char *temp, int *temp_len) lws_jws_sig_confirm_compact() argument 725 lws_jws_sig_confirm_json(const char *in, size_t len, struct lws_jws *jws, struct lws_jwk *jwk, struct lws_context *context, char *temp, int *temp_len) lws_jws_sig_confirm_json() argument 954 lws_jwt_signed_validate(struct lws_context *ctx, struct lws_jwk *jwk, const char *alg_list, const char *com, size_t len, char *temp, int tl, char *out, size_t *out_len) lws_jwt_signed_validate() argument 1197 lws_jwt_sign_compact(struct lws_context *ctx, struct lws_jwk *jwk, const char *alg, char *out, size_t *out_len, char *temp, int tl, const char *format, ...) lws_jwt_sign_compact() argument [all...] |
/third_party/elfio/elfio/ |
H A D | elfio_array.hpp | 57 const T temp = *reinterpret_cast<const T*>( array_section->get_data() + in get_entry() local 59 address = convertor( temp ); in get_entry() 69 T temp = convertor( (T)address ); in add_entry() local 70 array_section->append_data( reinterpret_cast<char*>( &temp ), in add_entry() 71 sizeof( temp ) ); in add_entry()
|
/third_party/libwebsockets/lib/jose/jwe/ |
H A D | private-lib-jose-jwe.h | 36 char *temp, int *temp_len); 58 char *temp, int *temp_len); 67 char *temp, int *temp_len); 84 char *temp, int *temp_len); 88 char *temp, int *temp_len);
|
/third_party/ltp/testcases/misc/math/nextafter/ |
H A D | nextafter01.c | 50 FILE *temp; variable 63 setup(); /* temp file is now open */ in main() 70 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n", in main() 81 fprintf(temp, "nextafter returned %e, expected answer or 1.0\n", in main() 92 fprintf(temp, "nextafter 3 returned %e, expected 1.0\n", in main() 111 temp = stderr; in setup()
|
/third_party/toybox/toys/posix/ |
H A D | tee.c | 39 struct fd_list *temp; in do_tee_open() local 41 temp = xmalloc(sizeof(struct fd_list)); in do_tee_open() 42 temp->next = TT.outputs; in do_tee_open() 43 if (1 == (temp->fd = fd)) TT.out++; in do_tee_open() 44 TT.outputs = temp; in do_tee_open()
|
/third_party/libwebsockets/minimal-examples/api-tests/api-test-jose/ |
H A D | jwe.c | 73 char temp[2048], compact[2048]; in test_jwe_a1() local 74 int n, ret = -1, temp_len = sizeof(temp); in test_jwe_a1() 86 &jwe.jws.map, &jwe.jws.map_b64, temp, in test_jwe_a1() 92 n = lws_jwe_auth_and_decrypt(&jwe, lws_concat_temp(temp, temp_len), in test_jwe_a1() 116 temp_len = sizeof(temp); in test_jwe_a1() 136 jwe.jws.map.buf[LJWS_JOSE] = temp; in test_jwe_a1() 137 jwe.jws.map.len[LJWS_JOSE] = (uint32_t)lws_snprintf(temp, (unsigned int)temp_len, in test_jwe_a1() 147 lws_concat_temp(temp, temp_len), &temp_len, in test_jwe_a1() 149 lwsl_notice("%s: Not enough temp space for ptext\n", __func__); in test_jwe_a1() 157 lws_concat_temp(temp, temp_le in test_jwe_a1() 289 char temp[2048]; test_jwe_a2() local 495 char temp[4096], compact[4096]; test_jwe_ra_ptext_1024() local 623 char temp[4096], compact[4096]; test_jwe_r256a192_ptext() local 755 char temp[4096], compact[4096]; test_jwe_r256a256_ptext() local 1049 char temp[2048]; test_jwe_r256a128_jwe_openssl() local 1140 char temp[2048]; test_jwe_r256a128_jwe_mbedtls() local 1231 char temp[2048]; test_jwe_a3() local 1639 char temp[2048], *p; test_jwa_c() local 1788 char temp[3072], compact[2048]; test_ecdhes_t1() local 1968 char temp[2048]; test_akw_decrypt() local 2023 char temp[4096]; test_akw_encrypt() local 2140 char temp[4096]; test_jwe_json_complete() local [all...] |
/kernel/linux/linux-5.10/drivers/media/usb/dvb-usb/ |
H A D | af9005.c | 166 u8 temp = value; in af9005_write_ofdm_register() local 170 &temp, 1); in af9005_write_ofdm_register() 198 u8 temp; in af9005_read_register_bits() local 201 ret = af9005_read_ofdm_register(d, reg, &temp); in af9005_read_register_bits() 206 *value = (temp >> pos) & regmask[len - 1]; in af9005_read_register_bits() 215 u8 temp, mask; in af9005_write_register_bits() local 220 ret = af9005_read_ofdm_register(d, reg, &temp); in af9005_write_register_bits() 224 temp = (temp & ~mask) | ((value << pos) & mask); in af9005_write_register_bits() 225 return af9005_write_ofdm_register(d, reg, temp); in af9005_write_register_bits() 252 u8 temp; af9005_write_tuner_registers() local 305 u8 temp, buf[2]; af9005_read_tuner_registers() local 381 u8 temp; af9005_i2c_read() local 781 int temp, ret; af9005_led_control() local [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/dvb-usb/ |
H A D | af9005.c | 166 u8 temp = value; in af9005_write_ofdm_register() local 170 &temp, 1); in af9005_write_ofdm_register() 198 u8 temp; in af9005_read_register_bits() local 201 ret = af9005_read_ofdm_register(d, reg, &temp); in af9005_read_register_bits() 206 *value = (temp >> pos) & regmask[len - 1]; in af9005_read_register_bits() 215 u8 temp, mask; in af9005_write_register_bits() local 220 ret = af9005_read_ofdm_register(d, reg, &temp); in af9005_write_register_bits() 224 temp = (temp & ~mask) | ((value << pos) & mask); in af9005_write_register_bits() 225 return af9005_write_ofdm_register(d, reg, temp); in af9005_write_register_bits() 252 u8 temp; af9005_write_tuner_registers() local 305 u8 temp, buf[2]; af9005_read_tuner_registers() local 381 u8 temp; af9005_i2c_read() local 781 int temp, ret; af9005_led_control() local [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | ucnv_u32.cpp | 222 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE() local 241 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE() 290 temp[1] = (uint8_t) (ch >> 16 & 0x1F); in T_UConverter_fromUnicode_UTF32_BE() 291 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 292 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 296 *(myTarget++) = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 299 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 325 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local 345 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 394 temp[ in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 700 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE() local 810 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ucnv_u32.cpp | 222 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE() local 241 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE() 290 temp[1] = (uint8_t) (ch >> 16 & 0x1F); in T_UConverter_fromUnicode_UTF32_BE() 291 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 292 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 296 *(myTarget++) = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 299 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 325 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local 345 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 394 temp[ in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 700 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE() local 810 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnv_u32.cpp | 222 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE() local 241 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE() 290 temp[1] = (uint8_t) (ch >> 16 & 0x1F); in T_UConverter_fromUnicode_UTF32_BE() 291 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 292 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */ in T_UConverter_fromUnicode_UTF32_BE() 296 *(myTarget++) = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 299 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite]; in T_UConverter_fromUnicode_UTF32_BE() 325 unsigned char temp[sizeof(uint32_t)]; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() local 345 temp[0] = 0; in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 394 temp[ in T_UConverter_fromUnicode_UTF32_BE_OFFSET_LOGIC() 700 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE() local 810 unsigned char temp[sizeof(uint32_t)]; T_UConverter_fromUnicode_UTF32_LE_OFFSET_LOGIC() local [all...] |
/kernel/linux/linux-5.10/arch/arm64/crypto/ |
H A D | aes-neon.S | 28 .macro mul_by_x, out, in, temp, const 29 sshr \temp, \in, #7 31 and \temp, \temp, \const 32 eor \out, \out, \temp 36 .macro mul_by_x2, out, in, temp, const 37 ushr \temp, \in, #6 39 pmul \temp, \temp, \const 40 eor \out, \out, \temp [all...] |
/kernel/linux/linux-6.6/arch/arm64/crypto/ |
H A D | aes-neon.S | 28 .macro mul_by_x, out, in, temp, const 29 sshr \temp, \in, #7 31 and \temp, \temp, \const 32 eor \out, \out, \temp 36 .macro mul_by_x2, out, in, temp, const 37 ushr \temp, \in, #6 39 pmul \temp, \temp, \const 40 eor \out, \out, \temp [all...] |
/third_party/mesa3d/src/gallium/drivers/virgl/ |
H A D | virgl_tgsi.c | 42 unsigned temp; member 164 struct virgl_input_temp *temp) in virgl_mov_input_temp_sint() 166 if (temp->index != ~0) { in virgl_mov_input_temp_sint() 168 TGSI_FILE_TEMPORARY, temp->temp, TGSI_WRITEMASK_XYZW, in virgl_mov_input_temp_sint() 169 temp->file, temp->index, in virgl_mov_input_temp_sint() 170 temp->file, temp->index, 0); in virgl_mov_input_temp_sint() 176 struct virgl_input_temp *temp) in virgl_mov_input_temp_uint() 163 virgl_mov_input_temp_sint(struct tgsi_transform_context * ctx, struct virgl_input_temp *temp) virgl_mov_input_temp_sint() argument 175 virgl_mov_input_temp_uint(struct tgsi_transform_context * ctx, struct virgl_input_temp *temp) virgl_mov_input_temp_uint() argument 258 virgl_tgsi_rewrite_src_for_input_temp(struct virgl_input_temp *temp, struct tgsi_full_src_register *src) virgl_tgsi_rewrite_src_for_input_temp() argument [all...] |
/third_party/skia/third_party/externals/dng_sdk/source/ |
H A D | dng_matrix.cpp | 877 real64 temp [3] [3]; in Invert3by3() local 879 temp [0] [0] = a11 * a22 - a21 * a12; in Invert3by3() 880 temp [0] [1] = a21 * a02 - a01 * a22; in Invert3by3() 881 temp [0] [2] = a01 * a12 - a11 * a02; in Invert3by3() 882 temp [1] [0] = a20 * a12 - a10 * a22; in Invert3by3() 883 temp [1] [1] = a00 * a22 - a20 * a02; in Invert3by3() 884 temp [1] [2] = a10 * a02 - a00 * a12; in Invert3by3() 885 temp [2] [0] = a10 * a21 - a20 * a11; in Invert3by3() 886 temp [2] [1] = a20 * a01 - a00 * a21; in Invert3by3() 887 temp [ in Invert3by3() 930 real64 temp [kMaxColorPlanes] [kMaxColorPlanes * 2]; InvertNbyN() local [all...] |