Home
last modified time | relevance | path

Searched refs:ret (Results 9126 - 9150 of 11897) sorted by relevance

1...<<361362363364365366367368369370>>...476

/third_party/lame/misc/
H A Dath.c544 int ret; in getchar_keyboard() local
551 ret = select ( 1, fd, NULL, NULL, &t ); in getchar_keyboard()
553 switch ( ret ) { in getchar_keyboard()
557 ret = read (0, &c, 1); in getchar_keyboard()
558 return ret == 1 ? c : -1; in getchar_keyboard()
/third_party/mesa3d/src/freedreno/afuc/
H A Ddisasm.c664 if (instr->ret.pad) in disasm_instr()
666 if (instr->ret.interrupt) in disasm_instr()
669 printf("ret"); in disasm_instr()
895 int c, ret; in main() local
954 ret = afuc_util_init(gpuver, colors); in main()
955 if (ret < 0) { in main()
/third_party/libwebsockets/lib/roles/http/server/
H A Dlws-spa.c459 int ret = 0; in lws_urldecode_s_destroy() local
462 ret = -1; in lws_urldecode_s_destroy()
464 if (!ret) in lws_urldecode_s_destroy()
467 ret = -1; in lws_urldecode_s_destroy()
475 return ret; in lws_urldecode_s_destroy()
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/
H A Dvc4_validate.c914 int ret = 0; in vc4_validate_shader_recs() local
917 ret = validate_gl_shader_rec(dev, exec, &exec->shader_state[i]); in vc4_validate_shader_recs()
918 if (ret) in vc4_validate_shader_recs()
919 return ret; in vc4_validate_shader_recs()
922 return ret; in vc4_validate_shader_recs()
/third_party/node/src/quic/
H A Dtlscontext.cc190 auto ret = context->AddCert(env, std::move(bio)); in InitializeSecureContext()
191 return ret; in InitializeSecureContext()
419 int ret = ngtcp2_crypto_read_write_crypto_data( in Receive() local
422 switch (ret) { in Receive()
434 return ret; in Receive()
/third_party/ntfs-3g/libntfs-3g/
H A Dxattrs.c206 enum SYSTEMXATTRS ret; in ntfs_xattr_system_type() local
214 ret = p->xattr; in ntfs_xattr_system_type()
221 ret = q->xattr; in ntfs_xattr_system_type()
228 ret = XATTR_NTFS_EFSINFO; in ntfs_xattr_system_type()
230 return (ret); in ntfs_xattr_system_type()
/third_party/mesa3d/src/intel/tools/
H A Daubinator_error_decode.c777 ASSERTED int ret; in open_error_state_file() local
780 ret = asprintf(&filename, "%s/i915_error_state", path); in open_error_state_file()
781 assert(ret > 0); in open_error_state_file()
787 ret = asprintf(&filename, "%s/%d/i915_error_state", path, minor); in open_error_state_file()
788 assert(ret > 0); in open_error_state_file()
/third_party/ltp/testcases/kernel/syscalls/sendmsg/
H A Dsendmsg01.c539 int ret = 0; in setup() local
554 ret = system("ip link set lo up"); in setup()
555 if (WEXITSTATUS(ret) != 0) { in setup()
556 ret = system("ifconfig lo up 127.0.0.1"); in setup()
557 if (WEXITSTATUS(ret) != 0) { in setup()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_screen.c732 enum pipe_compute_cap param, void *ret) in fd_get_compute_param()
744 if (ret) \ in fd_get_compute_param()
745 memcpy(ret, x, sizeof(x)); \ in fd_get_compute_param()
756 if (ret) in fd_get_compute_param()
757 sprintf(ret, "%s", ir); in fd_get_compute_param()
731 fd_get_compute_param(struct pipe_screen *pscreen, enum pipe_shader_ir ir_type, enum pipe_compute_cap param, void *ret) fd_get_compute_param() argument
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_screen.c536 void *ret) in iris_get_compute_param()
545 if (ret) \ in iris_get_compute_param()
546 memcpy(ret, x, sizeof(x)); \ in iris_get_compute_param()
559 if (ret) in iris_get_compute_param()
560 strcpy(ret, "gen"); in iris_get_compute_param()
533 iris_get_compute_param(struct pipe_screen *pscreen, enum pipe_shader_ir ir_type, enum pipe_compute_cap param, void *ret) iris_get_compute_param() argument
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_util.h638 void *ret;
642 ret = released;
644 return ret;
651 ret = allocArray[count >> objStepLog2] + (count & mask) * objSize;
653 return ret;
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_context.h1096 enum pipe_error ret; \
1098 ret = SVGA_TRY(_func); \
1099 (_retried) = (ret != PIPE_OK); \
1103 ret = (_func); \
1104 assert(ret == PIPE_OK); \
/third_party/mesa3d/src/imagination/vulkan/winsys/pvrsrvkm/
H A Dpvr_srv_job_render.c564 int ret; in pvr_srv_winsys_render_submit() local
570 ret = sync_accumulate("", &in_geom_fd, srv_wait_sync->fd); in pvr_srv_winsys_render_submit()
571 if (ret) { in pvr_srv_winsys_render_submit()
580 ret = sync_accumulate("", &in_frag_fd, srv_wait_sync->fd); in pvr_srv_winsys_render_submit()
581 if (ret) { in pvr_srv_winsys_render_submit()
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_query_hw.c39 int ret; in nvc0_hw_query_allocate() local
58 ret = nouveau_bo_map(hq->bo, 0, nvc0->base.client); in nvc0_hw_query_allocate()
59 if (ret) { in nvc0_hw_query_allocate()
146 bool ret = true; in nvc0_hw_begin_query() local
223 return ret; in nvc0_hw_begin_query()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_mul.c499 int ret = bn_mul_fixed_top(r, a, b, ctx); in BN_mul() local
504 return ret; in BN_mul()
509 int ret = 0; in bn_mul_fixed_top() local
615 ret = 1; in bn_mul_fixed_top()
619 return ret; in bn_mul_fixed_top()
/third_party/node/deps/openssl/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl235 ret
343 ret
396 ret
450 ret
532 ret
/third_party/node/deps/openssl/openssl/crypto/
H A Ds390xcap.c40 goto ret; \
46 goto ret; \
697 goto ret; in parse_env()
732 goto ret; in parse_env()
742 ret: in parse_env()
/third_party/openssl/test/
H A Dtls-provider.c177 int ret; in tls_prov_get_capabilities() local
188 ret = cb(xor_group_params, arg); in tls_prov_get_capabilities()
189 ret &= cb(xor_kemgroup_params, arg); in tls_prov_get_capabilities()
215 ret &= cb(dummygroup, arg); in tls_prov_get_capabilities()
218 return ret; in tls_prov_get_capabilities()
/third_party/python/Lib/idlelib/
H A Drpc.py192 ret = method(*args, **kwargs)
193 if isinstance(ret, RemoteObject):
194 ret = remoteref(ret)
195 return ("OK", ret)
/third_party/openssl/crypto/bn/
H A Dbn_mul.c499 int ret = bn_mul_fixed_top(r, a, b, ctx); in BN_mul() local
504 return ret; in BN_mul()
509 int ret = 0; in bn_mul_fixed_top() local
615 ret = 1; in bn_mul_fixed_top()
619 return ret; in bn_mul_fixed_top()
/third_party/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl235 ret
343 ret
396 ret
450 ret
532 ret
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconsistency_tools.py138 ret = True
141 ret = True
145 ret = False
147 ret = False
149 return ret
/third_party/openssl/crypto/
H A Ds390xcap.c40 goto ret; \
46 goto ret; \
697 goto ret; in parse_env()
732 goto ret; in parse_env()
742 ret: in parse_env()
/third_party/pulseaudio/src/pulsecore/
H A Dohos_socket-server.c671 int fd = -1, ret = -1; in pa_unix_socket_is_stale() local
687 ret = 1; in pa_unix_socket_is_stale()
690 ret = 1; in pa_unix_socket_is_stale()
693 ret = 0; in pa_unix_socket_is_stale()
699 return ret; in pa_unix_socket_is_stale()
H A Dsocket-server.c650 int fd = -1, ret = -1; in pa_unix_socket_is_stale() local
666 ret = 1; in pa_unix_socket_is_stale()
669 ret = 1; in pa_unix_socket_is_stale()
672 ret = 0; in pa_unix_socket_is_stale()
678 return ret; in pa_unix_socket_is_stale()

Completed in 31 milliseconds

1...<<361362363364365366367368369370>>...476