/kernel/linux/linux-5.10/sound/soc/qcom/qdsp6/ |
H A D | q6core.c | 73 struct aprv2_ibasic_rsp_result_t *result; in q6core_callback() local 76 result = data->payload; in q6core_callback() 79 result = data->payload; in q6core_callback() 80 switch (result->opcode) { in q6core_callback() 82 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 87 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 92 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 135 core->avcs_state = result->opcode; in q6core_callback()
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | attr.py | 165 self.result = {} 237 def compare(self, expect, result): 243 # events in result. Fail if there's not any. 248 for res_name, res_event in result.items(): 272 # check we match the same group in the result. 280 res_group = result[res_name].group 309 log.debug(" loading result events"); 311 self.load_events(f, self.result); 315 self.resolve_groups(self.result); 318 self.compare(self.expect, self.result) [all...] |
/kernel/linux/linux-6.6/drivers/thermal/ |
H A D | thermal_hwmon.c | 146 int result; in thermal_add_hwmon_sysfs() local 164 result = PTR_ERR(hwmon->device); in thermal_add_hwmon_sysfs() 171 result = -ENOMEM; in thermal_add_hwmon_sysfs() 184 result = device_create_file(hwmon->device, &temp->temp_input.attr); in thermal_add_hwmon_sysfs() 185 if (result) in thermal_add_hwmon_sysfs() 196 result = device_create_file(hwmon->device, in thermal_add_hwmon_sysfs() 198 if (result) in thermal_add_hwmon_sysfs() 220 return result; in thermal_add_hwmon_sysfs()
|
/kernel/linux/linux-6.6/drivers/cpufreq/ |
H A D | ia64-acpi-cpufreq.c | 208 unsigned int result = 0; in acpi_cpufreq_cpu_init() local 219 result = acpi_processor_register_performance(&data->acpi_data, cpu); in acpi_cpufreq_cpu_init() 221 if (result) in acpi_cpufreq_cpu_init() 227 result = -ENODEV; in acpi_cpufreq_cpu_init() 238 result = -ENODEV; in acpi_cpufreq_cpu_init() 247 result = -ENOMEM; in acpi_cpufreq_cpu_init() 289 /* the first call to ->target() should result in us actually in acpi_cpufreq_cpu_init() 293 return (result); in acpi_cpufreq_cpu_init() 301 return (result); in acpi_cpufreq_cpu_init()
|
/kernel/linux/linux-6.6/sound/soc/qcom/qdsp6/ |
H A D | q6core.c | 73 struct aprv2_ibasic_rsp_result_t *result; in q6core_callback() local 76 result = data->payload; in q6core_callback() 79 result = data->payload; in q6core_callback() 80 switch (result->opcode) { in q6core_callback() 82 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 87 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 92 if (result->status == ADSP_EUNSUPPORTED) in q6core_callback() 135 core->avcs_state = result->opcode; in q6core_callback()
|
/test/testfwk/xdevice/src/xdevice/_core/testkit/ |
H A D | kit.py | 70 result = "" 72 result = " {} class ".format(prefix_char) 74 result = " {} class ".format(prefix_char) 76 result = " {} class ".format(prefix_char) 88 if not result: 90 return result + ",".join(test_items) 133 result = get_class(junit_paras, prefix_char, para_name) 134 ret_str.append(result)
|
/third_party/ffmpeg/libavcodec/ |
H A D | libtheoraenc.c | 282 int result, i, ret; in encode_frame() local 306 result = th_encode_ycbcr_in(h->t_state, t_yuv_buffer); in encode_frame() 307 if (result) { in encode_frame() 309 switch (result) { in encode_frame() 320 av_log(avc_context, AV_LOG_ERROR, "theora_encode_YUVin failed (%s) [%d]\n", message, result); in encode_frame() 329 result = th_encode_packetout(h->t_state, 0, &o_packet); in encode_frame() 330 switch (result) { in encode_frame() 338 av_log(avc_context, AV_LOG_ERROR, "theora_encode_packetout failed [%d]\n", result); in encode_frame()
|
H A D | nuv.c | 166 int result, init_frame = !avctx->frame_number; in decode_frame() local 264 if ((result = codec_reinit(avctx, w, h, q)) < 0) in decode_frame() 265 return result; in decode_frame() 266 if (result) { in decode_frame() 281 if ((result = ff_reget_buffer(avctx, c->pic, flags)) < 0) in decode_frame() 282 return result; in decode_frame() 320 if ((result = av_frame_ref(picture, c->pic)) < 0) in decode_frame() 321 return result; in decode_frame()
|
/third_party/elfutils/libdwfl/ |
H A D | linux-proc-maps.c | 278 int result = ferror_unlocked (f) ? errno : feof_unlocked (f) ? 0 : ENOEXEC; in proc_maps_report() local 283 return result != 0 ? result : lose ? -1 : 0; in proc_maps_report() 301 int result = grovel_auxv (pid, dwfl, &sysinfo_ehdr); in INTDEF() local 302 if (result != 0) in INTDEF() 303 return result; in INTDEF() 316 result = proc_maps_report (dwfl, f, sysinfo_ehdr, pid); in INTDEF() 320 return result; in INTDEF()
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_dnn_processing.c | 137 int result; in config_input() local 141 result = ff_dnn_get_input(&ctx->dnnctx, &model_input); in config_input() 142 if (result != 0) { in config_input() 144 return result; in config_input() 197 int result; in config_output() local 201 result = ff_dnn_get_output(&ctx->dnnctx, inlink->w, inlink->h, &outlink->w, &outlink->h); in config_output() 202 if (result != 0) { in config_output() 204 return result; in config_output()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec_h264.c | 319 int result = 0; in h264_handle_packet() local 335 if ((result = av_new_packet(pkt, len + sizeof(start_sequence))) < 0) in h264_handle_packet() 336 return result; in h264_handle_packet() 346 result = ff_h264_handle_aggregated_packet(ctx, data, pkt, buf, len, 0, in h264_handle_packet() 355 result = AVERROR_PATCHWELCOME; in h264_handle_packet() 359 result = h264_handle_packet_fu_a(ctx, data, pkt, buf, len, in h264_handle_packet() 367 result = AVERROR_INVALIDDATA; in h264_handle_packet() 373 return result; in h264_handle_packet()
|
/third_party/gn/src/base/containers/ |
H A D | flat_map.h | 309 auto result = variable 311 if (!result.second) 312 result.first->second = std::forward<M>(obj); 313 return result; 321 auto result = tree::emplace_hint_key_args(hint, key, std::forward<K>(key), variable 323 if (!result.second) 324 result.first->second = std::forward<M>(obj); 325 return result.first;
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | renderer.c | 181 char **result; in read_jcl_lines() local 184 result = malloc(alloc * sizeof(char *)); in read_jcl_lines() 192 result = realloc(result, alloc * sizeof(char *)); in read_jcl_lines() 194 result[cnt] = line; in read_jcl_lines() 198 result[cnt][*readbinarybytes - 1] = '\0'; in read_jcl_lines() 203 result[cnt] = NULL; in read_jcl_lines() 204 return result; in read_jcl_lines()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | StringPrep.java | 46 * <li> Normalize: Possibly normalize the result of step 1 using Unicode 395 char result = 0; in map() 402 result = getCodePointValue(ch); in map() 403 getValues(result,val); in map() 455 int result = getCodePointValue(ch); 456 if( (result & 0x07) == LABEL_SEPARATOR){ 466 2) Normalize -- Possibly normalize the result of step 1 using Unicode 529 char result; in prepare() 538 result = getCodePointValue(ch); in prepare() 539 getValues(result,va in prepare() [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | udat.h | 122 * to control the length of the result; from SHORT to MEDIUM to LONG to FULL. 123 * The exact result depends on the locale, but generally: 1045 * @param result A pointer to a buffer to receive the formatted number. 1046 * @param resultLength The maximum size of result. 1061 UChar* result, 1074 * @param result A pointer to a buffer to receive the formatted number. 1075 * @param capacity The maximum size of result. 1091 UChar* result, 1103 * @param result 1106 * The maximum size of result [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
H A D | IDNAReference.java | 249 StringBuffer result = new StringBuffer(); in convertIDNToASCII() 258 result.append(convertToASCII(iter,options)); in convertIDNToASCII() 266 result.append((char)FULL_STOP); in convertIDNToASCII() 268 return result; in convertIDNToASCII() 358 StringBuffer result = new StringBuffer(); in convertIDNToUnicode() 368 result.append(convertToUnicode(iter,options)); in convertIDNToUnicode() 375 result.append((char)FULL_STOP); in convertIDNToUnicode() 377 return result; in convertIDNToUnicode()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | UtilityTest.java | 50 String result = Utility.unescape(input); in TestUnescape() 51 if (!result.equals(expect)) { in TestUnescape() 52 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect); in TestUnescape() 61 // result of this conversion will exceed the original length and in TestFormat() 67 String result[] = { in TestFormat() 83 result[i], Utility.formatForSource(data[i])); in TestFormat() 95 byte result[] = {-1, -1, -1, 15, 12}; in TestHighBit() 97 if (Utility.highBit(data[i]) != result[i]) { in TestHighBit() 100 + result[i]); in TestHighBit()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | UtilityTest.java | 48 String result = Utility.unescape(input); in TestUnescape() 49 if (!result.equals(expect)) { in TestUnescape() 50 errln("FAIL: Utility.unescape() returned " + result + ", exp. " + expect); in TestUnescape() 84 // result of this conversion will exceed the original length and in TestFormat() 90 String result[] = { in TestFormat() 106 result[i], Utility.formatForSource(data[i])); in TestFormat() 118 byte result[] = {-1, -1, -1, 15, 12}; in TestHighBit() 120 if (Utility.highBit(data[i]) != result[i]) { in TestHighBit() 123 + result[i]); in TestHighBit()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | StringPrep.java | 47 * <li> Normalize: Possibly normalize the result of step 1 using Unicode 378 char result = 0; in map() 385 result = getCodePointValue(ch); in map() 386 getValues(result,val); in map() 438 int result = getCodePointValue(ch); 439 if( (result & 0x07) == LABEL_SEPARATOR){ 449 2) Normalize -- Possibly normalize the result of step 1 using Unicode 511 char result; in prepare() 520 result = getCodePointValue(ch); in prepare() 521 getValues(result,va in prepare() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
H A D | IDNAReference.java | 246 StringBuffer result = new StringBuffer(); in convertIDNToASCII() 255 result.append(convertToASCII(iter,options)); in convertIDNToASCII() 263 result.append((char)FULL_STOP); in convertIDNToASCII() 265 return result; in convertIDNToASCII() 355 StringBuffer result = new StringBuffer(); in convertIDNToUnicode() 365 result.append(convertToUnicode(iter,options)); in convertIDNToUnicode() 372 result.append((char)FULL_STOP); in convertIDNToUnicode() 374 return result; in convertIDNToUnicode()
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | ucptrie.h | 383 * @param result (out) variable for the trie lookup result 386 #define UCPTRIE_FAST_U16_NEXT(trie, dataAccess, src, limit, c, result) UPRV_BLOCK_MACRO_BEGIN { \ 401 (result) = dataAccess(trie, __index); \ 414 * @param result (out) variable for the trie lookup result 417 #define UCPTRIE_FAST_U16_PREV(trie, dataAccess, start, src, c, result) UPRV_BLOCK_MACRO_BEGIN { \ 432 (result) = dataAccess(trie, __index); \ 448 * @param result (out) variable for the trie lookup result [all...] |
/third_party/lzma/CPP/7zip/Bundles/SFXCon/ |
H A D | SfxCon.cpp | 416 HRESULT result = codecs->Load();
in Main2() local 417 if (result != S_OK)
in Main2() 418 throw CSystemException(result);
in Main2() 454 HRESULT result = Extract(
in Main2() local 468 if (result == S_OK)
in Main2() 469 result = E_FAIL;
in Main2() 487 if (result != S_OK)
in Main2() 488 throw CSystemException(result);
in Main2() 497 HRESULT result = ListArchives(
in Main2() 515 if (result ! in Main2() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_combine_stores.c | 86 struct combined_store *result; in alloc_combined_store() local 88 result = linear_zalloc_child(state->lin_ctx, sizeof(*result)); in alloc_combined_store() 90 result = list_first_entry(&state->freelist, in alloc_combined_store() 93 list_del(&result->link); in alloc_combined_store() 94 memset(result, 0, sizeof(*result)); in alloc_combined_store() 96 return result; in alloc_combined_store()
|
/third_party/node/lib/internal/crypto/ |
H A D | util.js | 428 function onDone(resolve, reject, err, result) { 434 resolve(result); 457 let result = 0; 463 result |= input[n] << 8 * n_reversed; 466 return result; 470 let result = 0n; 474 result |= BigInt(input[n]) << 8n * BigInt(n_reversed); 477 return result;
|
/third_party/node/lib/internal/dns/ |
H A D | promises.js | 140 const result = { address: hostname, family: matchedFamily }; 141 resolve(all ? [result] : result); 273 function onresolve(err, result, ttls) { 280 result = ArrayPrototypeMap( 281 result, (address, index) => ({ address, ttl: ttls[index] })); 283 this.resolve(result); 285 stopPerf(this, kPerfHooksDnsLookupResolveContext, { detail: { result } });
|