Home
last modified time | relevance | path

Searched refs:res (Results 526 - 550 of 4457) sorted by relevance

1...<<21222324252627282930>>...179

/third_party/icu/icu4c/source/samples/ufortune/resources/
H A Dfortune_resources.mak17 # .res file must be added to this list, AND to the file res-file-list.txt
19 RESFILES= root.res es.res
39 # the definition for .txt to .res.
44 # Inference rule, for compiling a .txt file into a .res file.
45 # -t fools make into thinking there are files such as es.res, etc
47 .txt.res:
56 $(ICUDIR)\$(BIN)\pkgdata --name fortune_resources -v --mode dll -d . res-file-list.txt
/third_party/jerryscript/tests/unit-core/
H A Dtest-abort.cpp74 jerry_value_t res = jerry_set_property (global, callback_name, func); in HWTEST_F() local
75 TEST_ASSERT (!jerry_value_is_error (res)); in HWTEST_F()
77 jerry_release_value (res); in HWTEST_F()
101 res = jerry_run (parsed_code_val); in HWTEST_F()
103 TEST_ASSERT (jerry_value_is_abort (res)); in HWTEST_F()
105 jerry_release_value (res); in HWTEST_F()
136 res = jerry_run (parsed_code_val); in HWTEST_F()
138 TEST_ASSERT (jerry_value_is_abort (res)); in HWTEST_F()
140 jerry_release_value (res); in HWTEST_F()
/third_party/skia/src/gpu/vk/
H A DGrVkExtensions.cpp77 VkResult res; in getSpecVersions() local
80 res = grVkEnumerateInstanceExtensionProperties(nullptr, &extensionCount, nullptr); in getSpecVersions()
81 if (VK_SUCCESS != res) { in getSpecVersions()
85 res = grVkEnumerateInstanceExtensionProperties(nullptr, &extensionCount, extensions); in getSpecVersions()
86 if (VK_SUCCESS != res) { in getSpecVersions()
106 res = grVkEnumerateDeviceExtensionProperties(physDevice, nullptr, &extensionCount, nullptr); in getSpecVersions()
107 if (VK_SUCCESS != res) { in getSpecVersions()
111 res = grVkEnumerateDeviceExtensionProperties(physDevice, nullptr, &extensionCount, extensions); in getSpecVersions()
112 if (VK_SUCCESS != res) { in getSpecVersions()
/third_party/skia/third_party/externals/icu/source/samples/ufortune/resources/
H A Dfortune_resources.mak17 # .res file must be added to this list, AND to the file res-file-list.txt
19 RESFILES= root.res es.res
39 # the definition for .txt to .res.
44 # Inference rule, for compiling a .txt file into a .res file.
45 # -t fools make into thinking there are files such as es.res, etc
47 .txt.res:
56 $(ICUDIR)\$(BIN)\pkgdata --name fortune_resources -v --mode dll -d . res-file-list.txt
/third_party/skia/third_party/externals/microhttpd/
H A Dtest-driver114 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
115 0:*) col=$grn res=PASS recheck=no gcopy=no;;
116 77:*) col=$blu res=SKIP recheck=no gcopy=yes;;
117 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;;
118 *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;;
119 *:*) col=$red res=FAIL recheck=yes gcopy=yes;;
123 echo "${col}${res}${std}: $test_name"
126 echo ":test-result: $res" > $trs_file
127 echo ":global-test-result: $res" >> $trs_file
/third_party/vk-gl-cts/framework/common/
H A DtcuTexVerifierUtil.hpp43 Vector<float, Size> res; in computeFloatingPointError() local
45 res[ndx] = computeFloatingPointError(value[ndx], numAccurateBits[ndx]); in computeFloatingPointError()
46 return res; in computeFloatingPointError()
52 Vector<float, Size> res; in computeFixedPointError() local
54 res[ndx] = computeFixedPointError(numAccurateBits[ndx]); in computeFixedPointError()
55 return res; in computeFixedPointError()
61 Vector<float, Size> res; in computeColorBitsError() local
63 res[ndx] = computeColorBitsError(bits[ndx], numAccurateBits[ndx]); in computeColorBitsError()
64 return res; in computeColorBitsError()
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/
H A DLzmaAlone.cpp288 static void ParseUInt32(const CParser &parser, unsigned index, UInt32 &res)
291 res = GetNumber(parser[index].PostStrings[0]);
295 static int Error_HRESULT(const char *s, HRESULT res)
297 if (res == E_ABORT)
305 if (res == E_OUTOFMEMORY)
310 if (res == E_INVALIDARG)
317 ConvertUInt32ToHex((UInt32)res, temp);
446 HRESULT res = BenchCon(props2, numIterations, stdout);
448 if (res == S_OK)
450 return Error_HRESULT("Benchmark error", res);
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DVulkanCommandBufferPerf.cpp82 VkResult res = VK_NOT_READY; member in VulkanCommandBufferPerfTest
154 res = vkCreateSemaphore(mInfo.device, &imageAcquiredSemaphoreCreateInfo, NULL, in SetUp()
156 ASSERT_EQ(VK_SUCCESS, res); in SetUp()
162 res = vkCreateFence(mInfo.device, &fenceInfo, NULL, &mDrawFence); in SetUp()
163 ASSERT_EQ(VK_SUCCESS, res); in SetUp()
173 res = vkAcquireNextImageKHR(mInfo.device, mInfo.swap_chain, UINT64_MAX, in step()
177 ASSERT_EQ(VK_SUCCESS, res); in step()
228 VkResult res; in Present() local
231 res = vkWaitForFences(info.device, 1, &drawFence, VK_TRUE, FENCE_TIMEOUT); in Present()
232 } while (res in Present()
247 VkResult res; PrimaryCommandBufferBenchmarkHundredIndividual() local
313 VkResult res; PrimaryCommandBufferBenchmarkOneWithOneHundred() local
380 VkResult res; SecondaryCommandBufferBenchmark() local
[all...]
/third_party/skia/tools/gpu/vk/
H A DVkTestUtils.cpp160 VkResult res; in init_instance_extensions_and_layers() local
164 res = EnumerateInstanceLayerProperties(&layerCount, nullptr); in init_instance_extensions_and_layers()
165 if (VK_SUCCESS != res) { in init_instance_extensions_and_layers()
169 res = EnumerateInstanceLayerProperties(&layerCount, layers); in init_instance_extensions_and_layers()
170 if (VK_SUCCESS != res) { in init_instance_extensions_and_layers()
190 res = EnumerateInstanceExtensionProperties(nullptr, &extensionCount, nullptr); in init_instance_extensions_and_layers()
191 if (VK_SUCCESS != res) { in init_instance_extensions_and_layers()
195 res = EnumerateInstanceExtensionProperties(nullptr, &extensionCount, extensions); in init_instance_extensions_and_layers()
196 if (VK_SUCCESS != res) { in init_instance_extensions_and_layers()
210 res in init_instance_extensions_and_layers()
247 VkResult res; init_device_extensions_and_layers() local
[all...]
/third_party/alsa-utils/nhlt/
H A Dnhlt-dmic-info.c144 int res; in nhlt_dmic_ep_to_json() local
170 res = nhlt_dmic_config(out, ep + off + 4, mic); in nhlt_dmic_ep_to_json()
171 if (res < 0) in nhlt_dmic_ep_to_json()
172 return res; in nhlt_dmic_ep_to_json()
188 int res; in nhlt_table_to_json() local
211 res = 0; in nhlt_table_to_json()
213 res = nhlt_dmic_ep_to_json(out, nhlt + off, ep_size); in nhlt_table_to_json()
214 if (res > 0) in nhlt_table_to_json()
217 if (res < 0) in nhlt_table_to_json()
218 return res; in nhlt_table_to_json()
235 int _errno, fd, res; nhlt_to_json() local
335 int i, j, k, res; main() local
[all...]
/third_party/libcoap/src/
H A Dcoap_uri.c68 int res = 0; in coap_split_uri_sub() local
97 res = -2; in coap_split_uri_sub()
116 res = -1; in coap_split_uri_sub()
175 res = -3; in coap_split_uri_sub()
196 res = -3; in coap_split_uri_sub()
206 res = -5; in coap_split_uri_sub()
225 res = -4; in coap_split_uri_sub()
265 return res; in coap_split_uri_sub()
282 int res; in coap_uri_into_options() local
349 res in coap_uri_into_options()
488 int res; make_decoded_option() local
587 int res; write_option() local
[all...]
/third_party/lzma/CPP/Windows/
H A DFileName.cpp599 if path is ".", "..", res is empty.
600 if it's Super Path already, res is empty.
601 for \**** , and if GetCurDir is not drive (c:\), res is empty
602 for absolute paths, returns true, res is Super path.
605 static bool GetSuperPathBase(CFSTR s, UString &res) in GetSuperPathBase() argument
607 res.Empty(); in GetSuperPathBase()
637 res += temp; in GetSuperPathBase()
638 res += rem; in GetSuperPathBase()
659 res += kSuperUncPrefix; in GetSuperPathBase()
661 res in GetSuperPathBase()
803 GetFullPath(CFSTR dirPrefix, CFSTR s, FString &res) GetFullPath() argument
[all...]
/third_party/libfuse/lib/
H A Dfuse_opt.c161 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs); in call_proc() local
162 if (res == -1 || !res) in call_proc()
163 return res; in call_proc()
254 int res; in process_opt_sep_arg() local
268 res = process_opt(ctx, opt, sep, newarg, iso); in process_opt_sep_arg()
271 return res; in process_opt_sep_arg()
280 int res; in process_gopt() local
282 res = process_opt_sep_arg(ctx, opt, sep, arg, in process_gopt()
285 res in process_gopt()
304 int res; process_real_option_group() local
336 int res; process_option_group() local
401 int res; fuse_opt_parse() local
[all...]
/third_party/lzma/C/
H A D7zFile.c130 int res = fclose(p->file); in File_Close()
131 if (res != 0) in File_Close()
133 if (res == EOF) in File_Close()
135 return res; in File_Close()
168 const BOOL res = ReadFile(p->handle, data, curSize, &processed, NULL); in File_Read() local
172 if (!res) in File_Read()
234 const BOOL res = WriteFile(p->handle, data, curSize, &processed, NULL); in File_Write() local
238 if (!res) in File_Write()
301 WRes res = GetLastError(); in File_Seek() local
302 if (res ! in File_Seek()
352 DWORD res = GetLastError(); File_GetLength() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_float.c83 LLVMValueRef i32_qnanbit, shift, res; in lp_build_float_to_smallfloat() local
194 res = lp_build_select(&i32_bld, is_nan_or_inf, nan_or_inf, normal); in lp_build_float_to_smallfloat()
201 res = lp_build_and(&i32_bld, res, mask); in lp_build_float_to_smallfloat()
215 res = lp_build_or(&i32_bld, sign, res); in lp_build_float_to_smallfloat()
221 res = lp_build_shr(&i32_bld, res, shift); in lp_build_float_to_smallfloat()
225 res = lp_build_shl(&i32_bld, res, shif in lp_build_float_to_smallfloat()
291 LLVMValueRef wasinfnan, tmp, res, shift, maskabs, srcabs, sign; lp_build_smallfloat_to_float() local
[all...]
/third_party/python/Modules/_sha3/
H A Dsha3module.c107 HashReturn res; in py_sha3_new_impl() local
118 res = sha3_init(&self->hash_state, 28); in py_sha3_new_impl()
120 res = sha3_init(&self->hash_state, 32); in py_sha3_new_impl()
122 res = sha3_init(&self->hash_state, 48); in py_sha3_new_impl()
124 res = sha3_init(&self->hash_state, 64); in py_sha3_new_impl()
126 res = sha3_init(&self->hash_state, 16); in py_sha3_new_impl()
128 res = sha3_init(&self->hash_state, 32); in py_sha3_new_impl()
134 if (res != SUCCESS) { in py_sha3_new_impl()
147 res = SHA3_process(&self->hash_state, buf.buf, buf.len); in py_sha3_new_impl() local
151 res in py_sha3_new_impl()
226 HashReturn res; _sha3_sha3_224_digest_impl() local
253 HashReturn res; _sha3_sha3_224_hexdigest_impl() local
283 HashReturn res; _sha3_sha3_224_update() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/l2_packet/
H A Dl2_packet_linux.c183 int res; in l2_packet_receive() local
198 res = recvfrom(sock, buf, sizeof(buf), 0, NULL, NULL); in l2_packet_receive()
203 res = recvfrom(sock, buf, sizeof(buf), 0, (struct sockaddr *) &ll, in l2_packet_receive()
208 if (res < 0) { in l2_packet_receive()
222 res -= ETH_HLEN; in l2_packet_receive()
224 if (res <= 0) { in l2_packet_receive()
225 res = 0; in l2_packet_receive()
227 os_memmove(buf, (char *)buf + ETH_HLEN, res); in l2_packet_receive() local
229 l2->rx_callback(l2->rx_callback_ctx, l2_hdr.h_source, buf, res); in l2_packet_receive()
234 __func__, MAC2STR_SEC(ll.sll_addr), (int) res); in l2_packet_receive()
293 int res; l2_packet_receive_br() local
526 size_t res; l2_packet_get_ip_addr() local
[all...]
/third_party/ntfs-3g/libntfs-3g/
H A Dreparse.c436 int res; in ntfs_reparse_check_wsl() local
438 res = -EOPNOTSUPP; in ntfs_reparse_check_wsl()
446 res = 0; in ntfs_reparse_check_wsl()
451 if (res) in ntfs_reparse_check_wsl()
453 return (res); in ntfs_reparse_check_wsl()
1063 int res; in update_reparse_data() local
1069 res = 0; in update_reparse_data()
1075 res = -1; in update_reparse_data()
1078 res = ntfs_attr_truncate(na, (s64)size); in update_reparse_data()
1080 if (!res in update_reparse_data()
1125 int res; ntfs_delete_reparse_index() local
1194 int res; ntfs_set_ntfs_reparse_data() local
1268 int res; ntfs_remove_ntfs_reparse_data() local
1341 int res; ntfs_reparse_set_wsl_symlink() local
1379 int res; ntfs_reparse_set_wsl_not_symlink() local
[all...]
/third_party/ffmpeg/libavformat/
H A Drtpdec_qdm2.c189 int to_copy, n, res, include_csum; in qdm2_restore_block() local
199 if ((res = av_new_packet(pkt, qdm->block_size)) < 0) in qdm2_restore_block()
200 return res; in qdm2_restore_block()
244 int res = AVERROR_INVALIDDATA, n; in qdm2_parse_packet() local
260 if ((res = qdm2_parse_config(qdm, st, ++p, end)) < 0) in qdm2_parse_packet()
261 return res; in qdm2_parse_packet()
262 p += res; in qdm2_parse_packet()
276 if ((res = qdm2_parse_subpacket(qdm, st, p, end)) < 0) in qdm2_parse_packet()
277 return res; in qdm2_parse_packet()
278 p += res; in qdm2_parse_packet()
[all...]
/third_party/node/src/permission/
H A Dfs_permission.cc18 std::string WildcardIfDir(const std::string& res) noexcept {
20 int rc = uv_fs_stat(nullptr, &req, res.c_str(), nullptr);
25 if (res.back() == node::kPathSeparator) {
26 return res + "*";
28 return res + node::kPathSeparator + "*";
32 return res;
120 for (const std::string_view res : SplitString(allow, ","sv)) { in Apply()
121 if (res == "*"sv) { in Apply()
131 GrantAccess(scope, std::string(res.data(), res in Apply()
135 GrantAccess(PermissionScope perm, const std::string& res) GrantAccess() argument
[all...]
/third_party/node/deps/npm/node_modules/cacache/lib/content/
H A Dwrite.js86 (res) => {
87 res.integrity && this.emit('integrity', res.integrity)
89 res.size !== null && this.emit('size', res.size)
105 const res = await pipeToTmp(inputStream, cache, tmp.target, opts)
109 res.integrity,
112 return res
128 events.once(opts.integrityEmitter, 'integrity').then(res => res[
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
H A Dmemory.cpp43 auto res = munmap(ptr, count * pageSize()); in freePages() local
44 (void)res; in freePages()
45 MARL_ASSERT(res == 0, "Failed to free %d pages at %p", int(count), ptr); in freePages()
48 auto res = mprotect(addr, pageSize(), PROT_NONE); in protectPage() local
49 (void)res; in protectPage()
50 MARL_ASSERT(res == 0, "Failed to protect page at %p", addr); in protectPage()
115 auto res = VirtualFree(ptr, 0, MEM_RELEASE); in freePages() local
116 (void)res; in freePages()
117 MARL_ASSERT(res != 0, "Failed to free %d pages at %p", int(count), ptr); in freePages()
121 auto res in protectPage() local
[all...]
/third_party/python/Objects/
H A Dunicodectype.c209 int _PyUnicode_ToLowerFull(Py_UCS4 ch, Py_UCS4 *res) in _PyUnicode_ToLowerFull() argument
218 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToLowerFull()
221 res[0] = ch + ctype->lower; in _PyUnicode_ToLowerFull()
225 int _PyUnicode_ToTitleFull(Py_UCS4 ch, Py_UCS4 *res) in _PyUnicode_ToTitleFull() argument
234 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToTitleFull()
237 res[0] = ch + ctype->title; in _PyUnicode_ToTitleFull()
241 int _PyUnicode_ToUpperFull(Py_UCS4 ch, Py_UCS4 *res) in _PyUnicode_ToUpperFull() argument
250 res[i] = _PyUnicode_ExtendedCase[index + i]; in _PyUnicode_ToUpperFull()
253 res[0] = ch + ctype->upper; in _PyUnicode_ToUpperFull()
257 int _PyUnicode_ToFoldedFull(Py_UCS4 ch, Py_UCS4 *res) in _PyUnicode_ToFoldedFull() argument
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfslabel.c241 int res; in change_serial() local
245 res = -1; in change_serial()
268 res = 0; in change_serial()
273 res = 0; in change_serial()
276 return (res); in change_serial()
286 int res; in set_new_serial() local
288 res = -1; in set_new_serial()
309 res = 0; in set_new_serial()
315 if (res) in set_new_serial()
317 return (res); in set_new_serial()
323 int res; print_serial() local
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_bufmgr.cpp56 sprintf(buf, "d3d12_bo<direct,%p,0x%x>", ptr->res, (unsigned)ptr->estimated_size); in describe_direct_bo()
62 char res[128]; in describe_suballoc_bo() local
65 describe_direct_bo(res, base); in describe_suballoc_bo()
66 sprintf(buf, "d3d12_bo<suballoc<%s>,0x%x,0x%x>", res, in describe_suballoc_bo()
80 d3d12_bo_wrap_res(struct d3d12_screen *screen, ID3D12Resource *res, enum d3d12_residency_status residency) in d3d12_bo_wrap_res() argument
88 D3D12_RESOURCE_DESC desc = GetDesc(res); in d3d12_bo_wrap_res()
95 bo->res = res; in d3d12_bo_wrap_res()
116 ID3D12Resource *res; in d3d12_bo_new() local
148 IID_PPV_ARGS(&res)); in d3d12_bo_new()
[all...]

Completed in 15 milliseconds

1...<<21222324252627282930>>...179