Home
last modified time | relevance | path

Searched refs:res (Results 501 - 525 of 6347) sorted by relevance

1...<<21222324252627282930>>...254

/third_party/node/test/parallel/
H A Dtest-stream-pipeline.js149 const server = http.createServer((req, res) => {
157 pipeline(rs, res, () => {});
166 req.on('response', (res) => {
168 res.on('data', (data) => buf.push(data));
169 res.on('end', common.mustCall(() => {
181 const server = http.createServer((req, res) => {
197 pipeline(rs, res, () => {});
206 req.on('response', (res) => {
208 res.destroy();
216 const server = http.createServer((req, res)
[all...]
H A Dtest-http-agent-keepalive.js37 const server = http.createServer(common.mustCall((req, res) => {
39 res.destroy();
43 const socket = res.connection;
46 res.end('hello world');
67 const req = get('/second', common.mustCall((res) => {
69 assert.strictEqual(res.statusCode, 200);
70 res.on('data', checkDataAndSockets);
71 res.on('end', common.mustCall(() => {
86 const req = get('/remote_close', common.mustCall((res) => {
88 assert.strictEqual(res
[all...]
H A Dtest-whatwg-encoding-custom-textdecoder.js24 const res = dec.decode(buf);
25 assert.strictEqual(res, 'test€');
30 let res = '';
31 res += dec.decode(buf.slice(0, 8), { stream: true });
32 res += dec.decode(buf.slice(8));
33 assert.strictEqual(res, 'test€');
41 const res = dec.decode(buf);
42 assert.strictEqual(res, '\ufefftest€');
47 let res = '';
48 res
[all...]
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_nistz256.c98 /* Modular add: res = a+b mod P */
99 void ecp_nistz256_add(BN_ULONG res[P256_LIMBS],
102 /* Modular mul by 2: res = 2*a mod P */
103 void ecp_nistz256_mul_by_2(BN_ULONG res[P256_LIMBS],
105 /* Modular mul by 3: res = 3*a mod P */
106 void ecp_nistz256_mul_by_3(BN_ULONG res[P256_LIMBS],
109 /* Modular div by 2: res = a/2 mod P */
110 void ecp_nistz256_div_by_2(BN_ULONG res[P256_LIMBS],
112 /* Modular sub: res = a-b mod P */
113 void ecp_nistz256_sub(BN_ULONG res[P256_LIMB
206 BN_ULONG res; is_equal() local
224 BN_ULONG res = 0; is_one() local
541 BN_ULONG res[P256_LIMBS]; ecp_nistz256_mod_inverse() local
[all...]
/third_party/openssl/crypto/ec/
H A Decp_nistz256.c98 /* Modular add: res = a+b mod P */
99 void ecp_nistz256_add(BN_ULONG res[P256_LIMBS],
102 /* Modular mul by 2: res = 2*a mod P */
103 void ecp_nistz256_mul_by_2(BN_ULONG res[P256_LIMBS],
105 /* Modular mul by 3: res = 3*a mod P */
106 void ecp_nistz256_mul_by_3(BN_ULONG res[P256_LIMBS],
109 /* Modular div by 2: res = a/2 mod P */
110 void ecp_nistz256_div_by_2(BN_ULONG res[P256_LIMBS],
112 /* Modular sub: res = a-b mod P */
113 void ecp_nistz256_sub(BN_ULONG res[P256_LIMB
206 BN_ULONG res; is_equal() local
224 BN_ULONG res = 0; is_one() local
541 BN_ULONG res[P256_LIMBS]; ecp_nistz256_mod_inverse() local
[all...]
/third_party/lzma/C/Util/7z/
H A D7zMain.c217 WRes res; in MyCreateDir()
221 res = in MyCreateDir()
229 return res; in MyCreateDir()
240 WRes res; in OutFile_OpenUtf16()
243 res = OutFile_Open(p, (const char *)buf.data); in OutFile_OpenUtf16()
245 return res; in OutFile_OpenUtf16()
253 SRes res; in PrintString() local
255 res = Utf16_To_Char(&buf, s in PrintString()
260 if (res == SZ_OK) in PrintString()
263 return res; in PrintString()
408 int res; Set_File_FILETIME() local
552 SRes res; main() local
[all...]
/foundation/ability/ability_runtime/services/dataobsmgr/src/
H A Ddataobs_mgr_proxy.cpp74 int32_t res = IPC_ERROR; in RegisterObserver() local
75 return reply.ReadInt32(res) ? res : IPC_ERROR; in RegisterObserver()
98 int32_t res = IPC_ERROR; in UnregisterObserver() local
99 return reply.ReadInt32(res) ? res : IPC_ERROR; in UnregisterObserver()
123 int32_t res = IPC_ERROR; in NotifyChange() local
124 return reply.ReadInt32(res) ? res : IPC_ERROR; in NotifyChange()
155 int32_t res in RegisterObserverExt() local
179 int32_t res = IPC_ERROR; UnregisterObserverExt() local
208 int32_t res = IPC_ERROR; UnregisterObserverExt() local
238 int32_t res = IPC_ERROR; NotifyChangeExt() local
[all...]
/third_party/astc-encoder/Test/
H A Dastc_test_image.py205 res = encoder.run_test(image, blkSz, "-%s" % quality, testRuns,
207 res = trs.Record(blkSz, image.testFile, res[0], res[1], res[2], res[3])
208 resultSet.add_record(res)
211 refResult = testRef.get_matching_record(res)
212 res.set_status(determine_result(image, refResult, res))
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_idiv.c171 nir_ssa_def *res = emit_udiv(bld, lhs, rhs, false); in emit_idiv() local
172 return nir_bcsel(bld, d_sign, nir_ineg(bld, res), res); in emit_idiv()
174 nir_ssa_def *res = emit_udiv(bld, lhs, rhs, true); in emit_idiv() local
175 res = nir_bcsel(bld, lh_sign, nir_ineg(bld, res), res); in emit_idiv()
177 nir_ssa_def *cond = nir_ieq_imm(bld, res, 0); in emit_idiv()
179 res = nir_bcsel(bld, cond, res, nir_iad in emit_idiv()
213 nir_ssa_def *res = nir_fmul(b, p, rcp); convert_instr_small() local
[all...]
/third_party/ntfs-3g/libfuse-lite/
H A Dfuse_opt.c131 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs); in call_proc() local
132 if (res == -1 || !res) in call_proc()
133 return res; in call_proc()
222 int res; in process_opt_sep_arg() local
236 res = process_opt(ctx, opt, sep, newarg, iso); in process_opt_sep_arg()
239 return res; in process_opt_sep_arg()
248 int res; in process_gopt() local
250 res = process_opt_sep_arg(ctx, opt, sep, arg, iso); in process_gopt()
252 res in process_gopt()
266 int res; process_real_option_group() local
295 int res; process_option_group() local
360 int res; fuse_opt_parse() local
[all...]
/foundation/window/window_manager/window_scene/test/dms_unittest/
H A Dscreen_session_manager_proxy_test.cpp169 sptr<DisplayInfo> res = nullptr; in HWTEST_F() local
172 res = screenSessionManagerProxy->GetDefaultDisplayInfo(); in HWTEST_F()
176 ASSERT_NE(res, expectation); in HWTEST_F()
178 ASSERT_EQ(res, expectation); in HWTEST_F()
197 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; in HWTEST_F() local
200 res = screenSessionManagerProxy->SetScreenActiveMode(id, modeId); in HWTEST_F()
204 ASSERT_NE(res, DMError::DM_ERROR_IPC_FAILED); in HWTEST_F()
206 ASSERT_EQ(res, DMError::DM_ERROR_IPC_FAILED); in HWTEST_F()
225 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; in HWTEST_F() local
228 res in HWTEST_F()
253 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
283 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
311 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
339 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
367 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
395 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
423 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
450 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
478 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
506 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
534 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
562 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
590 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
1030 sptr<ScreenGroupInfo> res = nullptr; HWTEST_F() local
1076 std::shared_ptr<Media::PixelMap> res = nullptr; HWTEST_F() local
1104 sptr<DisplayInfo> res = nullptr; HWTEST_F() local
1131 sptr<DisplayInfo> res = nullptr; HWTEST_F() local
1180 sptr<ScreenInfo> res = nullptr; HWTEST_F() local
1316 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
1345 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
1373 DMError res = DMError::DM_ERROR_NOT_SYSTEM_APP; HWTEST_F() local
1420 sptr<CutoutInfo> res = nullptr; HWTEST_F() local
[all...]
H A Dscreen_session_manager_client_stub_test.cpp67 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F() local
68 EXPECT_EQ(res, 0); in HWTEST_F()
90 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F() local
91 EXPECT_NE(res, 0); in HWTEST_F()
115 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F() local
116 EXPECT_EQ(res, 0); in HWTEST_F()
138 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F() local
139 EXPECT_EQ(res, 0); in HWTEST_F()
161 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); in HWTEST_F() local
162 EXPECT_EQ(res, in HWTEST_F()
184 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
216 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
237 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
257 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
280 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
303 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
324 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
347 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
370 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
391 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
409 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
433 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
457 int res = screenSessionManagerClientStub_->OnRemoteRequest(code, data, reply, option); HWTEST_F() local
[all...]
/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/
H A Dres_sched_service_test.cpp128 int res = resSchedService_->Dump(wrongFd, argsNull); in HWTEST_F() local
129 EXPECT_NE(res, ERR_OK); in HWTEST_F()
132 res = resSchedService_->Dump(correctFd, argsNull); in HWTEST_F()
135 res = resSchedService_->Dump(correctFd, argsHelp); in HWTEST_F()
138 res = resSchedService_->Dump(correctFd, argsAll); in HWTEST_F()
141 res = resSchedService_->Dump(correctFd, argsError); in HWTEST_F()
144 res = resSchedService_->Dump(correctFd, argsPlugin); in HWTEST_F()
147 res = resSchedService_->Dump(correctFd, argsOnePlugin); in HWTEST_F()
150 res = resSchedService_->Dump(correctFd, argsOnePlugin1); in HWTEST_F()
153 res in HWTEST_F()
411 int32_t res = resSchedService_->GetSystemloadLevel(); HWTEST_F() local
431 int32_t res = resSchedService_->GetSystemloadLevel(); HWTEST_F() local
646 nlohmann::json res = resSchedServiceStub_->StringToJsonObj(""); HWTEST_F() local
653 nlohmann::json res = resSchedServiceStub_->StringToJsonObj(""); StringToJsonTask() local
682 int32_t res = resSchedServiceStub_->OnRemoteRequest( HWTEST_F() local
709 int32_t res = resSchedServiceStub_->OnRemoteRequest( RemoteRequestTask() local
[all...]
/third_party/ffmpeg/libavformat/
H A Dmmsh.c79 int chunk_len, res, ext_header_len; in get_chunk_header() local
81 res = ffurl_read_complete(mms->mms_hd, chunk_header, CHUNK_HEADER_LENGTH); in get_chunk_header()
82 if (res != CHUNK_HEADER_LENGTH) { in get_chunk_header()
103 res = ffurl_read_complete(mms->mms_hd, ext_header, ext_header_len); in get_chunk_header()
104 if (res != ext_header_len) { in get_chunk_header()
117 int res; in read_data_packet() local
124 res = ffurl_read_complete(mms->mms_hd, mms->in_buffer, len); in read_data_packet()
126 if (res != len) { in read_data_packet()
145 int res, len; in get_http_header_data() local
150 res in get_http_header_data()
331 int res, len = 0; handle_chunk_type() local
358 int res = 0; mmsh_read() local
[all...]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_texture_desc.c65 struct pipe_resource *res; member
143 struct etna_resource *res = etna_texture_handle_incompatible(pctx, prsc); in etna_create_sampler_view_desc() local
144 if (!res) in etna_create_sampler_view_desc()
166 &suballoc_offset, &sv->res); in etna_create_sampler_view_desc()
167 if (!sv->res) in etna_create_sampler_view_desc()
170 uint32_t *buf = etna_bo_map(etna_resource(sv->res)->bo) + suballoc_offset; in etna_create_sampler_view_desc()
173 uint32_t base_width = u_minify(res->base.width0, sv->base.u.tex.first_level); in etna_create_sampler_view_desc()
174 uint32_t base_height = u_minify(res->base.height0, sv->base.u.tex.first_level); in etna_create_sampler_view_desc()
175 uint32_t base_depth = u_minify(res->base.depth0, sv->base.u.tex.first_level); in etna_create_sampler_view_desc()
181 base_height = res in etna_create_sampler_view_desc()
233 struct etna_resource *res = etna_resource(sv->base.texture); etna_sampler_view_update_descriptor() local
265 struct etna_resource *res = etna_resource(sv->base.texture); etna_emit_texture_desc() local
[all...]
/third_party/vulkan-loader/loader/
H A Dloader_environment.c48 const char *res = CachedParameterGetChanged(g_Handle, &changed); in loader_getenv() local
49 loader_log(inst, VULKAN_LOADER_DEBUG_BIT | VULKAN_LOADER_INFO_BIT, 0, "loader_getenv name:%s, res:%s", name, res); in loader_getenv()
50 if (res == NULL || res[0] == '\0') { in loader_getenv()
53 return (char *)res; in loader_getenv()
384 VkResult res = parse_generic_filter_environment_var(inst, VK_LAYERS_ENABLE_ENV_VAR, &layer_filters->enable_filter); in parse_layer_environment_var_filters() local
385 if (VK_SUCCESS != res) { in parse_layer_environment_var_filters()
386 return res; in parse_layer_environment_var_filters()
388 res in parse_layer_environment_var_filters()
467 VkResult res = VK_SUCCESS; loader_add_environment_layers() local
[all...]
/foundation/ability/ability_runtime/cj_environment/test/unittest/cj_environment_test/
H A Dcj_environment_test.cpp225 auto res = cjEnv->StartUIScheduler(); in HWTEST_F() local
226 EXPECT_EQ(res, true); in HWTEST_F()
251 auto res = cjEnv->LoadCJLibrary(dlName); in HWTEST_F() local
252 EXPECT_EQ(res, nullptr); in HWTEST_F()
266 auto res = cjEnv->LoadCJLibrary(kind, dlName); in HWTEST_F() local
267 EXPECT_EQ(res, nullptr); in HWTEST_F()
291 auto res = cjEnv->GetUIScheduler(); in HWTEST_F() local
292 EXPECT_EQ(res, nullptr); in HWTEST_F()
307 auto res = cjEnv->GetSymbol(dso, symbol); in HWTEST_F() local
308 EXPECT_EQ(res, nullpt in HWTEST_F()
320 auto res = cjEnv->StartDebugger(); HWTEST_F() local
333 auto res = cjEnv->PostTask(task); HWTEST_F() local
346 auto res = cjEnv->HasHigherPriorityTask(); HWTEST_F() local
[all...]
/foundation/ability/ability_runtime/test/unittest/ability_first_frame_state_observer_manager_test/
H A Dability_first_frame_state_observer_manager_test.cpp85 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). in HWTEST_F() local
87 EXPECT_EQ(res, ERR_NOT_SYSTEM_APP); in HWTEST_F()
104 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). in HWTEST_F() local
106 EXPECT_EQ(res, ERR_PERMISSION_DENIED); in HWTEST_F()
123 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). in HWTEST_F() local
125 EXPECT_EQ(res, ERR_INVALID_VALUE); in HWTEST_F()
144 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). in HWTEST_F() local
146 EXPECT_EQ(res, ERR_OK); in HWTEST_F()
148 res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). in HWTEST_F()
150 EXPECT_EQ(res, ERR_O in HWTEST_F()
185 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). HWTEST_F() local
238 int32_t res = AppExecFwk::AbilityFirstFrameStateObserverManager::GetInstance(). HWTEST_F() local
[all...]
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Davmetadatahelper_impl.cpp112 auto res = InitMetadataCollector(); in ResolveMetadata() local
113 CHECK_AND_RETURN_RET(res == Status::OK, ""); in ResolveMetadata()
120 auto res = InitMetadataCollector(); in ResolveMetadata() local
121 CHECK_AND_RETURN_RET(res == Status::OK, {}); in ResolveMetadata()
128 auto res = InitMetadataCollector(); in FetchArtPicture() local
129 CHECK_AND_RETURN_RET(res == Status::OK, nullptr); in FetchArtPicture()
136 auto res = InitMetadataCollector(); in GetAVMetadata() local
137 CHECK_AND_RETURN_RET(res == Status::OK, nullptr); in GetAVMetadata()
145 auto res = InitThumbnailGenerator(); in FetchFrameAtTime() local
146 CHECK_AND_RETURN_RET(res in FetchFrameAtTime()
154 auto res = InitThumbnailGenerator(); FetchFrameYuv() local
161 auto res = InitMetadataCollector(); GetTimeByFrameIndex() local
168 auto res = InitMetadataCollector(); GetFrameIndexByTime() local
[all...]
/foundation/multimodalinput/input/libudev/test/
H A De2e_udev_test.cpp108 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { in HWTEST_F() local
115 EXPECT_EQ(res, 0); in HWTEST_F()
125 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { in HWTEST_F() local
128 EXPECT_EQ(res, 0); in HWTEST_F()
138 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { in HWTEST_F() local
141 EXPECT_EQ(res, 0); in HWTEST_F()
158 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { in HWTEST_F() local
161 EXPECT_EQ(res, 0); in HWTEST_F()
171 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { in HWTEST_F() local
174 EXPECT_EQ(res, in HWTEST_F()
184 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { HWTEST_F() local
197 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { HWTEST_F() local
210 auto res = inputManager_->GetDevice(listener_->deviceId_, [](std::shared_ptr<OHOS::MMI::InputDevice> dev) { HWTEST_F() local
[all...]
/third_party/backends/backend/
H A Dhp5400_sanei.c262 size_t res = 0; in hp5400_bulk_read() local
282 res = block; in hp5400_bulk_read()
283 sanei_usb_read_bulk (fd, buffer, &res); in hp5400_bulk_read()
285 (u_long) res, (u_long) len); in hp5400_bulk_read()
286 if (res > 0) in hp5400_bulk_read()
288 fwrite (buffer, (len < res) ? len : res, 1, file); in hp5400_bulk_read()
303 size_t res = 0; in hp5400_bulk_read_block() local
313 res = len; in hp5400_bulk_read_block()
314 sanei_usb_read_bulk (fd, (SANE_Byte *) buffer, &res); in hp5400_bulk_read_block()
326 size_t res = 0, offset = 0; hp5400_bulk_command_write() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/property/
H A Dproperty_parse.c95 static int parse_number(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_number() argument
120 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_number()
121 res->v.int_val = v; in parse_number()
125 static int parse_hex(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_hex() argument
157 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_hex()
158 res->v.int_val = v; in parse_hex()
162 static int parse_oct(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_oct() argument
187 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_oct()
188 res->v.int_val = v; in parse_oct()
193 OSSL_PROPERTY_DEFINITION *res, cons in parse_string()
192 parse_string(OSSL_LIB_CTX *ctx, const char *t[], char delim, OSSL_PROPERTY_DEFINITION *res, const int create) parse_string() argument
223 parse_unquoted(OSSL_LIB_CTX *ctx, const char *t[], OSSL_PROPERTY_DEFINITION *res, const int create) parse_unquoted() argument
255 parse_value(OSSL_LIB_CTX *ctx, const char *t[], OSSL_PROPERTY_DEFINITION *res, int create) parse_value() argument
347 OSSL_PROPERTY_LIST *res = NULL; ossl_parse_property() local
407 OSSL_PROPERTY_LIST *res = NULL; ossl_parse_query() local
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A D_kiss_fft_guts.h43 C_SUB( res, a,b) : res = a - b
44 C_SUBFROM( res , a) : res -= a
45 C_ADDTO( res , a) : res += a
105 #define C_ADD( res, a,b)\
109 (res).r=(a).r+(b).r; (res).i=(a).i+(b).i; \
111 #define C_SUB( res,
[all...]
/third_party/openssl/crypto/property/
H A Dproperty_parse.c95 static int parse_number(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_number() argument
111 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_number()
112 res->v.int_val = v; in parse_number()
116 static int parse_hex(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_hex() argument
136 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_hex()
137 res->v.int_val = v; in parse_hex()
141 static int parse_oct(const char *t[], OSSL_PROPERTY_DEFINITION *res) in parse_oct() argument
157 res->type = OSSL_PROPERTY_TYPE_NUMBER; in parse_oct()
158 res->v.int_val = v; in parse_oct()
163 OSSL_PROPERTY_DEFINITION *res, cons in parse_string()
162 parse_string(OSSL_LIB_CTX *ctx, const char *t[], char delim, OSSL_PROPERTY_DEFINITION *res, const int create) parse_string() argument
193 parse_unquoted(OSSL_LIB_CTX *ctx, const char *t[], OSSL_PROPERTY_DEFINITION *res, const int create) parse_unquoted() argument
225 parse_value(OSSL_LIB_CTX *ctx, const char *t[], OSSL_PROPERTY_DEFINITION *res, int create) parse_value() argument
317 OSSL_PROPERTY_LIST *res = NULL; ossl_parse_property() local
377 OSSL_PROPERTY_LIST *res = NULL; ossl_parse_query() local
[all...]
/foundation/multimedia/av_codec/test/unittest/filter_test/
H A Ddecoder_surface_filter_unit_test.cpp271 auto res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F() local
272 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
276 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
277 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
280 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
281 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
284 res = decoderSurfaceFilter_->DoInitAfterLink(); in HWTEST_F()
285 std::cout << "DoInitAfterLink " << static_cast<int32_t>(res) << std::endl; in HWTEST_F()
293 auto res = decoderSurfaceFilter_->DoStart(); in HWTEST_F() local
294 EXPECT_NE(res, Statu in HWTEST_F()
320 auto res = decoderSurfaceFilter_->DoPause(); HWTEST_F() local
348 auto res = decoderSurfaceFilter_->DoResume(); HWTEST_F() local
367 auto res = decoderSurfaceFilter_->DoResumeDragging(); HWTEST_F() local
386 auto res = decoderSurfaceFilter_->DoStop(); HWTEST_F() local
411 auto res = decoderSurfaceFilter_->DoPrepare(); HWTEST_F() local
1012 int32_t res = decoderSurfaceFilter_->GetDecRateUpperLimit(); HWTEST_F() local
[all...]

Completed in 17 milliseconds

1...<<21222324252627282930>>...254