Home
last modified time | relevance | path

Searched refs:res (Results 1026 - 1050 of 6339) sorted by relevance

1...<<41424344454647484950>>...254

/foundation/communication/ipc/ipc/test/unittest/ipc/client/
H A DIpcClientTest.cpp135 int res = -1; in HWTEST_F() local
136 ReadInt32(&reply2, &res); in HWTEST_F()
137 RPC_LOG_INFO(" 12 + 17 = %d", res); in HWTEST_F()
141 EXPECT_EQ(res, tmpSum); in HWTEST_F()
155 int res = -1; in HWTEST_F() local
156 ReadInt32(&reply, &res); in HWTEST_F()
157 RPC_LOG_INFO(" 12 * 17 = %d", res); in HWTEST_F()
161 EXPECT_EQ(res, tmpMul); in HWTEST_F()
185 int res; in HWTEST_F() local
186 ReadInt32(&anonymousreply, &res); in HWTEST_F()
242 int res; HWTEST_F() local
[all...]
/foundation/filemanagement/storage_service/services/storage_daemon/disk/src/
H A Ddisk_info.cpp189 int res = Destroy(); in ReadPartition() local
190 if (res != E_OK) { in ReadPartition()
201 res = ForkExec(cmd, &output); in ReadPartition()
202 if (res != E_OK) { in ReadPartition()
204 return res; in ReadPartition()
341 int res; in Partition() local
343 res = Destroy(); in Partition()
344 if (res != E_OK) { in Partition()
351 res = ForkExec(cmd); in Partition()
352 if (res ! in Partition()
[all...]
/third_party/curl/lib/
H A Dmemdebug.c355 int res = socketpair(domain, type, protocol, socket_vector); in curl_dbg_socketpair() local
357 if(source && (0 == res)) in curl_dbg_socketpair()
362 return res; in curl_dbg_socketpair()
392 int res = sclose(sockfd); in curl_dbg_sclose() local
394 return res; in curl_dbg_sclose()
400 FILE *res = fopen(file, mode); in curl_dbg_fopen() local
404 source, line, file, mode, (void *)res); in curl_dbg_fopen()
406 return res; in curl_dbg_fopen()
412 FILE *res = fdopen(filedes, mode); in curl_dbg_fdopen() local
415 source, line, filedes, mode, (void *)res); in curl_dbg_fdopen()
421 int res; curl_dbg_fclose() local
[all...]
H A Dif2ip.c108 if2ip_result_t res = IF2IP_NOT_FOUND; in Curl_if2ip() local
135 if(res == IF2IP_NOT_FOUND) in Curl_if2ip()
136 res = IF2IP_AF_NOT_SUPPORTED; in Curl_if2ip()
149 if(res == IF2IP_NOT_FOUND) in Curl_if2ip()
150 res = IF2IP_AF_NOT_SUPPORTED; in Curl_if2ip()
163 res = IF2IP_FOUND; in Curl_if2ip()
169 else if((res == IF2IP_NOT_FOUND) && in Curl_if2ip()
171 res = IF2IP_AF_NOT_SUPPORTED; in Curl_if2ip()
179 return res; in Curl_if2ip()
/third_party/lzma/CPP/Windows/
H A DFileIO.h202 bool GetGeometry(DISK_GEOMETRY *res) const in GetGeometry()
203 { return DeviceIoControlOut(IOCTL_DISK_GET_DRIVE_GEOMETRY, res, sizeof(*res)); } in GetGeometry()
205 bool GetGeometryEx(my_DISK_GEOMETRY_EX *res) const in GetGeometryEx()
206 { return DeviceIoControlOut(my_IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, res, sizeof(*res)); } in GetGeometryEx()
208 bool GetCdRomGeometry(DISK_GEOMETRY *res) const in GetCdRomGeometry()
209 { return DeviceIoControlOut(IOCTL_CDROM_GET_DRIVE_GEOMETRY, res, sizeof(*res)); } in GetCdRomGeometry()
211 bool GetPartitionInfo(PARTITION_INFORMATION *res) in GetPartitionInfo() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_idiv_const.c89 nir_ssa_def *res = in build_idiv() local
92 res = nir_iadd(b, res, n); in build_idiv()
94 res = nir_isub(b, res, n); in build_idiv()
96 res = nir_ishr_imm(b, res, m.shift); in build_idiv()
97 res = nir_iadd(b, res, nir_ushr_imm(b, res, in build_idiv()
139 nir_ssa_def *res = nir_ior(b, n, d_def); build_imod() local
[all...]
H A Dnir_range_analysis.c1328 uint32_t res = max; in nir_unsigned_upper_bound() local
1341 res = config->max_workgroup_invocations - 1; in nir_unsigned_upper_bound()
1343 res = (shader->info.workgroup_size[0] * in nir_unsigned_upper_bound()
1350 res = config->max_workgroup_size[scalar.comp] - 1u; in nir_unsigned_upper_bound()
1352 res = shader->info.workgroup_size[scalar.comp] - 1u; in nir_unsigned_upper_bound()
1355 res = config->max_workgroup_count[scalar.comp] - 1u; in nir_unsigned_upper_bound()
1358 res = config->max_workgroup_count[scalar.comp]; in nir_unsigned_upper_bound()
1362 res = mul_clamp(config->max_workgroup_size[scalar.comp], in nir_unsigned_upper_bound()
1365 res = (shader->info.workgroup_size[scalar.comp] * in nir_unsigned_upper_bound()
1371 res in nir_unsigned_upper_bound()
1468 uint32_t res = 0; nir_unsigned_upper_bound() local
1540 uint32_t res = max; nir_unsigned_upper_bound() local
[all...]
/third_party/musl/src/network/linux/
H A Dgetaddrinfo.c19 int reportdnsresult(int netid, char* name, int usedtime, int queryret, struct addrinfo *res, struct queryparam *param) in reportdnsresult() argument
22 if (dns_post_result_to_netsys_cache(netid, name, usedtime, queryret, res, param) == 0) { in reportdnsresult()
62 struct addrinfo** res) in getaddrinfo_hook()
65 int ret = g_customdnsresolvehook(host, serv, hints, res); in getaddrinfo_hook()
70 return predefined_host_lookup_ip(host, serv, hints, res); in getaddrinfo_hook()
73 int getaddrinfo(const char *restrict host, const char *restrict serv, const struct addrinfo *restrict hint, struct addrinfo **restrict res) in getaddrinfo() argument
76 return getaddrinfo_ext(host, serv, hint, res, &param); in getaddrinfo()
80 struct addrinfo **restrict res, struct queryparam *restrict param) in getaddrinfo_ext()
106 int ret = g_customdnsresolvehook(host, serv, hint, res); in getaddrinfo_ext()
115 if (dns_get_addr_info_from_netsys_cache2(netid, host, serv, hint, res) in getaddrinfo_ext()
61 getaddrinfo_hook(const char* host, const char* serv, const struct addrinfo* hints, struct addrinfo** res) getaddrinfo_hook() argument
79 getaddrinfo_ext(const char *restrict host, const char *restrict serv, const struct addrinfo *restrict hint, struct addrinfo **restrict res, struct queryparam *restrict param) getaddrinfo_ext() argument
[all...]
/third_party/python/Lib/
H A Dmailcap.py213 res = ''
220 res = res + c
224 res = res + c
226 res = res + filename
232 res = res + MIMEtype
244 res
[all...]
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/
H A Dperf_puppeteer_skottie_frames_test.go28 res := td.RunTestSteps(t, false, func(ctx context.Context) error {
42 require.Empty(t, res.Errors)
43 require.Empty(t, res.Exceptions)
67 res := td.RunTestSteps(t, false, func(ctx context.Context) error {
87 require.Empty(t, res.Errors)
88 require.Empty(t, res.Exceptions)
108 res := td.RunTestSteps(t, false, func(ctx context.Context) error {
129 require.Empty(t, res.Errors)
130 require.Empty(t, res.Exceptions)
161 res
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpas_kay.c194 struct ieee802_1x_kay *res = NULL; in ieee802_1x_alloc_kay_sm() local
242 res = ieee802_1x_kay_init(kay_ctx, policy, ssid->macsec_replay_protect, in ieee802_1x_alloc_kay_sm()
247 if (res == NULL) in ieee802_1x_alloc_kay_sm()
250 wpa_s->kay = res; in ieee802_1x_alloc_kay_sm()
298 int res; in ieee802_1x_auth_get_msk() local
305 res = eapol_sm_get_key(sm, key, keylen); in ieee802_1x_auth_get_msk()
306 if (res) { in ieee802_1x_auth_get_msk()
329 void *res = NULL; in ieee802_1x_notify_create_actor() local
378 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, in ieee802_1x_notify_create_actor()
393 return res; in ieee802_1x_notify_create_actor()
402 void *res = NULL; ieee802_1x_create_preshared_mka() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpas_kay.c194 struct ieee802_1x_kay *res = NULL; in ieee802_1x_alloc_kay_sm() local
242 res = ieee802_1x_kay_init(kay_ctx, policy, ssid->macsec_replay_protect, in ieee802_1x_alloc_kay_sm()
247 if (res == NULL) in ieee802_1x_alloc_kay_sm()
250 wpa_s->kay = res; in ieee802_1x_alloc_kay_sm()
298 int res; in ieee802_1x_auth_get_msk() local
305 res = eapol_sm_get_key(sm, key, keylen); in ieee802_1x_auth_get_msk()
306 if (res) { in ieee802_1x_auth_get_msk()
329 void *res = NULL; in ieee802_1x_notify_create_actor() local
378 res = ieee802_1x_kay_create_mka(wpa_s->kay, ckn, cak, 0, in ieee802_1x_notify_create_actor()
393 return res; in ieee802_1x_notify_create_actor()
402 void *res = NULL; ieee802_1x_create_preshared_mka() local
[all...]
/third_party/backends/backend/
H A Dhp5400_internal.c578 int res; in CircBufferGetLine() local
588 res = in CircBufferGetLine()
591 if (res != p->blksize) in CircBufferGetLine()
593 HP5400_DBG (DBG_ERR, "*** ERROR: Read returned %d. FATAL.\n", res); in CircBufferGetLine()
774 struct ScanResponse res; in DoAverageScan() local
782 if (InitScan2 (SCAN_TYPE_CALIBRATION, req, &HWParams, &res, 0, code) != 0) in DoAverageScan()
785 length = htonl (res.xsize) / 6; in DoAverageScan()
795 buffer = malloc (htonl (res.xsize) + 1); in DoAverageScan()
798 for (i = 0; i < htons (res.ysize); i++) in DoAverageScan()
813 array[k][j] /= htons (res in DoAverageScan()
821 DoScan(int iHandle, struct ScanRequest *req, const char *filename, int code, struct ScanResponse *res) DoScan() argument
1011 struct ScanResponse res; hp5400_scan() local
1146 struct ScanResponse res; InitScan() local
1199 struct ScanResponse res; InitScan2() local
[all...]
/foundation/communication/ipc/services/dbinder/test/unittest/
H A Ddbinder_service_unittest.cpp113 bool res = dBinderService->StartDBinderService(callbackImpl); in HWTEST_F() local
114 EXPECT_EQ(res, false); in HWTEST_F()
128 bool res = dBinderService->StartDBinderService(callbackImpl); in HWTEST_F() local
129 EXPECT_EQ(res, false); in HWTEST_F()
144 bool res = dBinderService->StartDBinderService(callbackImpl); in HWTEST_F() local
145 EXPECT_EQ(res, false); in HWTEST_F()
161 bool res = dBinderService->StartDBinderService(callbackImpl); in HWTEST_F() local
162 EXPECT_EQ(res, true); in HWTEST_F()
175 bool res = dBinderService->ReStartRemoteListener(); in HWTEST_F() local
176 EXPECT_EQ(res, fals in HWTEST_F()
190 bool res = dBinderService->ReStartRemoteListener(); HWTEST_F() local
204 bool res = dBinderService->StartRemoteListener(); HWTEST_F() local
219 bool res = dBinderService->StartRemoteListener(); HWTEST_F() local
234 bool res = dBinderService->RegisterRemoteProxy(serviceName, binderObject); HWTEST_F() local
294 bool res = dBinderService->AttachDeathRecipient(object, deathRecipient); HWTEST_F() local
309 bool res = dBinderService->AttachCallbackProxy(object, dbStub); HWTEST_F() local
323 bool res = dBinderService->DetachProxyObject(binderObject); HWTEST_F() local
435 bool res = dBinderService->IsDeviceIdIllegal(deviceID); HWTEST_F() local
449 bool res = dBinderService->IsDeviceIdIllegal(deviceID); HWTEST_F() local
463 bool res = dBinderService->IsDeviceIdIllegal(deviceID); HWTEST_F() local
478 bool res = dBinderService->CheckBinderObject(stub, binderObject); HWTEST_F() local
496 bool res = dBinderService->CheckBinderObject(stub, binderObject); HWTEST_F() local
512 bool res = dBinderService->IsSameStubObject(stub, service, device); HWTEST_F() local
584 bool res = dBinderService->SendEntryToRemote(stub, seqNumber, pid, uid); HWTEST_F() local
598 bool res = dBinderService->CheckSystemAbilityId(systemAbilityId); HWTEST_F() local
630 bool res = dBinderService->IsSameLoadSaItem(srcNetworkId, systemAbilityId, loadSaItem); HWTEST_F() local
649 bool res = dBinderService->IsSameLoadSaItem(srcNetworkId, systemAbilityId, loadSaItem); HWTEST_F() local
668 bool res = dBinderService->IsSameLoadSaItem(srcNetworkId, systemAbilityId, loadSaItem); HWTEST_F() local
687 bool res = dBinderService->OnRemoteInvokerMessage(message); HWTEST_F() local
701 std::string res = dBinderService->GetDatabusNameByProxy(proxy); HWTEST_F() local
743 std::string res = dBinderService->CreateDatabusName(pid, uid); HWTEST_F() local
888 bool res = dBinderService->AttachCallbackProxy(object, dBinderServiceStub.GetRefPtr()); HWTEST_F() local
1234 bool res = dBinderService->ReStartRemoteListener(); HWTEST_F() local
1249 bool res = dBinderService->ReStartRemoteListener(); HWTEST_F() local
1268 bool res = dBinderService->IsSameStubObject(stub, service, deviceID); HWTEST_F() local
1289 bool res = dBinderService->SendEntryToRemote(stub, seqNumber, pid, uid); HWTEST_F() local
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/navigation/
H A Drouter_map_helper.cpp117 auto res = CompareIdentifiers(semVer1.major, semVer2.major); in CompareMain() local
118 if (res) { in CompareMain()
119 return res; in CompareMain()
121 res = CompareIdentifiers(semVer1.minor, semVer2.minor); in CompareMain()
122 if (res) { in CompareMain()
123 return res; in CompareMain()
169 auto res = CompareMain(semVer1, semVer2); in Compare() local
170 return res ? res : ComparePre(semVer1, semVer2); in Compare()
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/payload_data/
H A Dsend_object_info_data.cpp58 int res = ParserData(buffer, offset); in Parser() local
59 if (res != MTP_SUCCESS) { in Parser()
60 return res; in Parser()
82 int res = Maker(tmpVar); in CalculateSize() local
83 if (res != MTP_SUCCESS) { in CalculateSize()
84 return res; in CalculateSize()
117 int res = ParserDataForImageInfo(buffer, offset); in ParserData() local
118 if (res != MTP_SUCCESS) { in ParserData()
119 return res; in ParserData()
/foundation/multimodalinput/input/test/facility/virtual_device/src/
H A Dgeneral_device.cpp113 for (const auto &res : results) { in GetInputDeviceNodes()
114 if (res[0] == 'N') { in GetInputDeviceNodes()
115 std::string::size_type spos = res.find(kname); in GetInputDeviceNodes()
118 std::string::size_type tpos = res.find("\"", spos); in GetInputDeviceNodes()
120 name = res.substr(spos, tpos - spos); in GetInputDeviceNodes()
123 } else if (!name.empty() && (res[0] == 'H')) { in GetInputDeviceNodes()
124 std::string::size_type spos = res.find(kevent); in GetInputDeviceNodes()
131 while (std::isalnum(res[tpos])) { in GetInputDeviceNodes()
134 auto [_, ret] = nodes.emplace(name, res.substr(spos, tpos - spos)); in GetInputDeviceNodes()
/foundation/communication/wifi/wifi/base/security_utils/src/
H A Dwifi_openssl_utils.cpp69 int res = -1; in OpensslAesEncrypt() local
73 return res; in OpensslAesEncrypt()
116 res = 0; in OpensslAesEncrypt()
119 LOGE("%{public}s: Aes Encrypt encrypt res %{public}d !", __func__, res); in OpensslAesEncrypt()
122 return res; in OpensslAesEncrypt()
129 int res = -1; in OpensslAesDecrypt() local
133 return res; in OpensslAesDecrypt()
178 res = 0; in OpensslAesDecrypt()
183 return res; in OpensslAesDecrypt()
[all...]
/third_party/ffmpeg/tools/
H A Dtarget_bsf_fuzzer.c49 int res; in LLVMFuzzerTestOneInput() local
61 res = f ? av_bsf_alloc(f, &bsf) : av_bsf_get_null_filter(&bsf); in LLVMFuzzerTestOneInput()
62 if (res < 0) in LLVMFuzzerTestOneInput()
115 res = av_bsf_init(bsf); in LLVMFuzzerTestOneInput()
116 if (res < 0) { in LLVMFuzzerTestOneInput()
135 res = av_new_packet(pkt, data - last); in LLVMFuzzerTestOneInput()
136 if (res < 0) in LLVMFuzzerTestOneInput()
148 res = av_bsf_send_packet(bsf, pkt); in LLVMFuzzerTestOneInput()
149 if (res < 0) { in LLVMFuzzerTestOneInput()
/third_party/jerryscript/tests/unit-core/
H A Dtest-newtarget.cpp188 jerry_value_t res = jerry_run (parsed_code_val); in HWTEST_F() local
189 TEST_ASSERT (!jerry_value_is_error (res)); in HWTEST_F()
191 jerry_release_value (res); in HWTEST_F()
205 jerry_value_t res = jerry_run (parsed_code_val); in HWTEST_F() local
206 TEST_ASSERT (!jerry_value_is_error (res)); in HWTEST_F()
208 jerry_release_value (res); in HWTEST_F()
227 jerry_value_t res = jerry_run (parsed_code_val); in HWTEST_F() local
228 TEST_ASSERT (!jerry_value_is_error (res)); in HWTEST_F()
230 jerry_release_value (res); in HWTEST_F()
/third_party/protobuf/benchmarks/util/
H A Dbig_query_utils.py112 res = table_req.execute(num_retries=NUM_RETRIES)
113 print('Successfully created %s "%s"' % (res['kind'], res['id']))
144 res = table_req.execute(num_retries=NUM_RETRIES)
145 print('Successfully patched %s "%s"' % (res['kind'], res['id']))
161 res = insert_req.execute(num_retries=NUM_RETRIES)
162 if res.get('insertErrors', None):
163 print('Error inserting rows! Response: %s' % res)
/third_party/vk-gl-cts/external/amber/src/samples/
H A Dimage_diff.cc177 amber::Result res = in main() local
179 if (!res.IsSuccess()) { in main()
181 << res.Error() << std::endl; in main()
186 amber::Result res; in main() local
188 res = buffers[0].CompareRMSE(&buffers[1], options.tolerance); in main()
190 res = buffers[0].CompareHistogramEMD(&buffers[1], options.tolerance); in main()
192 if (res.IsSuccess()) in main()
195 std::cout << "Images differ: " << res.Error() << std::endl; in main()
197 return !res.IsSuccess(); in main()
/third_party/skia/modules/svg/src/
H A DSkSVGFilterContext.cpp39 const Result* res = nullptr; in filterPrimitiveSubregion() local
41 res = fResults.find(input.id()); in filterPrimitiveSubregion()
43 res = &fPreviousResult; in filterPrimitiveSubregion()
45 return res ? res->fFilterSubregion : fFilterEffectsRegion; in filterPrimitiveSubregion()
102 const Result* res = findResultById(inputType.id()); in getInput() local
103 if (res) { in getInput()
104 result = res->fImageFilter; in getInput()
105 inputCS = res->fColorspace; in getInput()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_state.c322 u_upload_alloc(uploader, 0, size, alignment, &ref->offset, &ref->res, &p); in upload_state()
904 struct iris_resource *res = (struct iris_resource *)ice->state.pixel_hashing_tables; in upload_pixel_hashing_tables() local
934 iris_use_pinned_bo(batch, res->bo, false, IRIS_DOMAIN_NONE); in upload_pixel_hashing_tables()
935 iris_record_state_size(batch->state_sizes, res->bo->address + res->offset, size); in upload_pixel_hashing_tables()
939 ptr.SliceHashTableStatePointer = iris_bo_offset_from_base_address(res->bo) + in upload_pixel_hashing_tables()
940 res->offset; in upload_pixel_hashing_tables()
2247 struct pipe_resource *res = shs->sampler_table.res; in iris_upload_sampler_states() local
2248 struct iris_bo *bo = iris_resource_bo(res); in iris_upload_sampler_states()
2337 fill_buffer_surface_state(struct isl_device *isl_dev, struct iris_resource *res, void *map, enum isl_format format, struct isl_swizzle swizzle, unsigned offset, unsigned size, isl_surf_usage_flags_t usage) fill_buffer_surface_state() argument
2462 fill_surface_state(struct isl_device *isl_dev, void *map, struct iris_resource *res, struct isl_surf *surf, struct isl_view *view, unsigned aux_usage, uint32_t extra_main_offset, uint32_t tile_x_sa, uint32_t tile_y_sa) fill_surface_state() argument
2505 fill_surface_states(struct isl_device *isl_dev, struct iris_surface_state *surf_state, struct iris_resource *res, struct isl_surf *surf, struct isl_view *view, uint64_t extra_main_offset, uint32_t tile_x_sa, uint32_t tile_y_sa) fill_surface_states() argument
2678 struct iris_resource *res = (struct iris_resource *) tex; iris_create_surface() local
2874 struct iris_resource *res = (void *) img->resource; iris_set_shader_images() local
3046 struct iris_resource *res = (void *) resources[i]; iris_set_global_binding() local
3420 struct iris_resource *res = (void *) cbuf->buffer; iris_set_constant_buffer() local
3548 struct iris_resource *res = (void *) buffers[i].buffer; iris_set_shader_buffers() local
3628 struct iris_resource *res = (void *) state->resource; iris_set_vertex_buffers() local
3825 struct iris_resource *res = (void *) p_res; iris_create_stream_output_target() local
3928 struct iris_resource *res = (void *) tgt->base.buffer; iris_set_stream_output_targets() local
4460 struct iris_resource *res = (void *) shader->assembly.res; KSP() local
4863 surf_state_update_clear_value(struct iris_batch *batch, struct iris_resource *res, struct iris_surface_state *surf_state, enum isl_aux_usage aux_usage) surf_state_update_clear_value() argument
4904 update_clear_value(struct iris_context *ice, struct iris_batch *batch, struct iris_resource *res, struct iris_surface_state *surf_state, struct isl_view *view) update_clear_value() argument
4963 struct iris_resource *res = (void *) p_surf->texture; use_surface() local
5056 struct iris_resource *res = (void *) iv->base.resource; use_image() local
5200 iris_use_optional_res(struct iris_batch *batch, struct pipe_resource *res, bool writeable, enum iris_domain access) iris_use_optional_res() argument
5355 struct iris_resource *res = (void *) cbuf->buffer; iris_restore_render_saved_bos() local
5374 struct pipe_resource *res = shs->sampler_table.res; iris_restore_render_saved_bos() local
5406 struct pipe_resource *res = genx->vertex_buffers[i].resource; iris_restore_render_saved_bos() local
5641 struct iris_resource *res = (void *) cbuf->buffer; setup_constant_buffers() local
6101 struct pipe_resource *res = shs->sampler_table.res; iris_upload_dirty_render_state() local
6568 struct iris_resource *res = (void *) state->resource; iris_upload_dirty_render_state() local
6593 struct iris_resource *res = (void *) ice->draw.derived_draw_params.res; iris_upload_dirty_render_state() local
6926 struct iris_resource *res = (void *) draw->index.resource; iris_upload_render_state() local
7272 struct pipe_resource *res = ice->state.global_bindings[i]; iris_upload_gpgpu_walker() local
7465 iris_rebind_buffer(struct iris_context *ice, struct iris_resource *res) iris_rebind_buffer() argument
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dmain.cpp293 for (auto &res : resources) in print_resources()
295 bool active = compiler.has_active_builtin(res.builtin, storage); in print_resources()
297 auto &type = compiler.get_type(res.value_type_id); in print_resources()
327 switch (res.builtin) in print_resources()
335 default: builtin_str = string("builtin #") + to_string(res.builtin); in print_resources()
349 for (auto &res : resources) in print_resources()
351 auto &type = compiler.get_type(res.type_id); in print_resources()
353 if (print_ssbo && compiler.buffer_is_hlsl_counter_buffer(res.id)) in print_resources()
359 bool is_push_constant = compiler.get_storage_class(res.id) == StorageClassPushConstant; in print_resources()
362 bool is_sized_block = is_block && (compiler.get_storage_class(res in print_resources()
451 print_resources(const Compiler &compiler, const ShaderResources &res) print_resources() argument
537 print_push_constant_resources(const Compiler &compiler, const SmallVector<Resource> &res) print_push_constant_resources() argument
1343 ShaderResources res; compile_iteration() local
[all...]

Completed in 22 milliseconds

1...<<41424344454647484950>>...254