/third_party/skia/third_party/externals/freetype/src/cff/ |
H A D | cffdrivr.c | 323 FT_UShort sid; in cff_get_glyph_name() local 366 /* first, locate the sid in the charset table */ in cff_get_glyph_name() 367 sid = font->charset.sids[glyph_index]; in cff_get_glyph_name() 370 gname = cff_index_get_sid_string( font, sid ); in cff_get_glyph_name() 390 FT_UShort sid; in cff_get_name_index() local 428 sid = charset->sids[i]; in cff_get_name_index() 430 if ( sid > 390 ) in cff_get_name_index() 431 name = cff_index_get_string( cff, sid - 391 ); in cff_get_name_index() 433 name = (FT_String *)psnames->adobe_std_strings( sid ); in cff_get_name_index()
|
/third_party/ffmpeg/libavformat/ |
H A D | wtvdec.c | 600 static AVStream * new_stream(AVFormatContext *s, AVStream *st, int sid, int codec_type) in new_stream() argument 616 st->id = sid; in new_stream() 634 static AVStream * parse_media_type(AVFormatContext *s, AVStream *st, int sid, in parse_media_type() argument 658 st = parse_media_type(s, st, sid, mediatype, actual_subtype, actual_formattype, size - 32); in parse_media_type() 662 st = new_stream(s, st, sid, AVMEDIA_TYPE_AUDIO); in parse_media_type() 689 st = new_stream(s, st, sid, AVMEDIA_TYPE_VIDEO); in parse_media_type() 715 st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE); in parse_media_type() 725 st = new_stream(s, st, sid, AVMEDIA_TYPE_SUBTITLE); in parse_media_type() 786 int len, sid, consumed; in parse_chunks() local 799 sid in parse_chunks() [all...] |
H A D | oggdec.c | 313 static int ogg_read_page(AVFormatContext *s, int *sid, int probing) in ogg_read_page() argument 415 *sid = -1; in ogg_read_page() 426 *sid = -1; in ogg_read_page() 484 /* This function is always called with sid != NULL */ in ogg_read_page() 485 *sid = idx; in ogg_read_page() 492 * @param *sid is set to the stream for the packet or -1 if there is 497 static int ogg_packet(AVFormatContext *s, int *sid, int *dstart, int *dsize, in ogg_packet() argument 508 if (sid) in ogg_packet() 509 *sid = -1; in ogg_packet() 611 if (sid) in ogg_packet() [all...] |
/third_party/ntfs-3g/include/ntfs-3g/ |
H A D | acls.h | 110 char *sidstr; /* sid text from the same record */ 128 BOOL ntfs_valid_pattern(const SID *sid); 129 BOOL ntfs_valid_sid(const SID *sid); 135 int ntfs_sid_size(const SID * sid);
|
H A D | security.h | 45 SID *sid; /* Windows id : usid or gsid */ member 214 extern int ntfs_sid_to_mbs_size(const SID *sid); 215 extern char *ntfs_sid_to_mbs(const SID *sid, char *sid_str,
|
/third_party/pulseaudio/src/modules/raop/ |
H A D | raop-client.c | 100 char *sci, *sid; member 892 url = pa_sprintf_malloc("rtsp://[%s]/%s", ip, c->sid); in rtsp_stream_cb() 895 url = pa_sprintf_malloc("rtsp://%s/%s", ip, c->sid); in rtsp_stream_cb() 915 c->sid, ipv, ip, ipv, c->host, frames); in rtsp_stream_cb() 947 c->sid, ipv, ip, ipv, c->host, frames, key, iv); in rtsp_stream_cb() 1195 pa_xfree(c->sid); in rtsp_stream_cb() 1197 c->sid = NULL; in rtsp_stream_cb() 1225 pa_xfree(c->sid); in rtsp_stream_cb() 1227 c->sid = NULL; in rtsp_stream_cb() 1426 if (c->sid) in pa_raop_client_disconnect() 1548 uint32_t sid; pa_raop_client_announce() local [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/examples/ |
H A D | sessions.c | 103 char sid[33]; member 183 if (0 == strcmp (cookie, ret->sid)) in get_session() 202 snprintf (ret->sid, in get_session() 203 sizeof (ret->sid), in get_session() 274 session->sid); in add_session_cookie() 487 session->sid, in post_iterator()
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | post_example.c | 81 char sid[33]; member 161 if (0 == strcmp (cookie, ret->sid)) in get_session() 180 snprintf (ret->sid, in get_session() 181 sizeof (ret->sid), in get_session() 252 session->sid); in add_session_cookie() 471 session->sid, in post_iterator()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap_pax.c | 524 u8 *sid; in eap_pax_get_session_id() local 529 sid = os_malloc(1 + EAP_PAX_MID_LEN); in eap_pax_get_session_id() 530 if (sid == NULL) in eap_pax_get_session_id() 534 sid[0] = EAP_TYPE_PAX; in eap_pax_get_session_id() 535 os_memcpy(sid + 1, data->mid, EAP_PAX_MID_LEN); in eap_pax_get_session_id() 537 return sid; in eap_pax_get_session_id()
|
H A D | eap_eke.c | 747 u8 *sid; in eap_eke_get_session_id() local 754 sid = os_malloc(sid_len); in eap_eke_get_session_id() 755 if (sid == NULL) in eap_eke_get_session_id() 757 sid[0] = EAP_TYPE_EKE; in eap_eke_get_session_id() 758 os_memcpy(sid + 1, data->nonce_p, data->sess.nonce_len); in eap_eke_get_session_id() 759 os_memcpy(sid + 1 + data->sess.nonce_len, data->nonce_s, in eap_eke_get_session_id() 763 return sid; in eap_eke_get_session_id()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap_pax.c | 524 u8 *sid; in eap_pax_get_session_id() local 529 sid = os_malloc(1 + EAP_PAX_MID_LEN); in eap_pax_get_session_id() 530 if (sid == NULL) in eap_pax_get_session_id() 534 sid[0] = EAP_TYPE_PAX; in eap_pax_get_session_id() 535 os_memcpy(sid + 1, data->mid, EAP_PAX_MID_LEN); in eap_pax_get_session_id() 537 return sid; in eap_pax_get_session_id()
|
H A D | eap_eke.c | 747 u8 *sid; in eap_eke_get_session_id() local 754 sid = os_malloc(sid_len); in eap_eke_get_session_id() 755 if (sid == NULL) in eap_eke_get_session_id() 757 sid[0] = EAP_TYPE_EKE; in eap_eke_get_session_id() 758 os_memcpy(sid + 1, data->nonce_p, data->sess.nonce_len); in eap_eke_get_session_id() 759 os_memcpy(sid + 1 + data->sess.nonce_len, data->nonce_s, in eap_eke_get_session_id() 763 return sid; in eap_eke_get_session_id()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_shader_vs.cpp | 428 unsigned sid = semantic.second; in do_scan_instruction() local 435 output.set_sid(sid); in do_scan_instruction() 585 << " name=" << out_io.name()<< " sid=" << out_io.sid() << "\n"; in do_store_output() 589 sfn_log << SfnLog::io << " against " << k << " name=" << in_io.name<< " sid=" << in_io.sid << "\n"; in do_store_output() 592 in_io.sid == out_io.sid()) { in do_store_output() 607 << " sid=" << out_io.sid() << " tha in do_store_output() [all...] |
H A D | sfn_shader.cpp | 73 void ShaderIO::set_sid(int sid) in set_sid() argument 75 m_sid = sid; in set_sid() 91 /* For non-generic params - pack name and sid into 8 bits */ in set_sid() 251 int sid = int_from_string_with_prefix(value, "SID:"); in read_output() local 252 output.set_sid(sid); in read_output() 282 int sid = int_from_string_with_prefix(value, "SID:"); in read_input() local 283 input.set_sid(sid); in read_input() 1339 io.sid = info.sid(); in get_shader_info() 1354 sfn_log << SfnLog::io << "Emit Input [" << index << "] sid in get_shader_info() [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | security.c | 212 * @sid: [IN] SID for which to determine the maximum string size 215 * store the standard textual representation of the SID pointed to by @sid. 221 int ntfs_sid_to_mbs_size(const SID *sid) in ntfs_sid_to_mbs_size() argument 225 if (!ntfs_valid_sid(sid)) { in ntfs_sid_to_mbs_size() 244 if (!sid->identifier_authority.high_part) in ntfs_sid_to_mbs_size() 252 size += (1 + 10) * sid->sub_authority_count; in ntfs_sid_to_mbs_size() 260 * @sid: [IN] SID to convert 264 * Convert the SID pointed to by @sid to its standard textual representation. 288 char *ntfs_sid_to_mbs(const SID *sid, char *sid_str, size_t sid_str_size) in ntfs_sid_to_mbs() argument 296 * No need to check @sid i in ntfs_sid_to_mbs() 3368 SID *sid; ntfs_sd_add_everyone() local 4174 SID *sid; ntfs_do_default_mapping() local [all...] |
/third_party/mesa3d/src/gallium/winsys/svga/drm/ |
H A D | vmw_screen_ioctl.c | 193 vmw_printf("Surface id is %d\n", rep->sid); in vmw_ioctl_surface_create() 195 return rep->sid; in vmw_ioctl_surface_create() 327 vmw_printf("Surface id is %d\n", rep->sid); in vmw_ioctl_gb_surface_create() 361 req->sid = whandle->handle; in vmw_ioctl_surface_req() 376 req->sid = handle; in vmw_ioctl_surface_req() 380 req->sid = whandle->handle; in vmw_ioctl_surface_req() 434 *handle = req->sid; in vmw_ioctl_gb_surface_ref() 462 *handle = req->sid; in vmw_ioctl_gb_surface_ref() 496 vmw_ioctl_surface_destroy(struct vmw_winsys_screen *vws, uint32 sid) in vmw_ioctl_surface_destroy() argument 503 s_arg.sid in vmw_ioctl_surface_destroy() [all...] |
H A D | vmw_screen_svga.c | 558 surface->sid = vmw_ioctl_gb_surface_create(vws, flags, format, usage, in vmw_svga_winsys_surface_create() 567 if (surface->sid == SVGA3D_INVALID_ID) { in vmw_svga_winsys_surface_create() 579 surface->sid = vmw_ioctl_gb_surface_create(vws, flags, format, usage, in vmw_svga_winsys_surface_create() 585 if (surface->sid == SVGA3D_INVALID_ID) in vmw_svga_winsys_surface_create() 605 vmw_ioctl_surface_destroy(vws, surface->sid); in vmw_svga_winsys_surface_create() 611 surface->sid = vmw_ioctl_surface_create(vws, (SVGA3dSurface1Flags)flags, in vmw_svga_winsys_surface_create() 614 if(surface->sid == SVGA3D_INVALID_ID) in vmw_svga_winsys_surface_create()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server_pax.c | 576 u8 *sid; in eap_pax_get_session_id() local 581 sid = os_malloc(1 + EAP_PAX_MID_LEN); in eap_pax_get_session_id() 582 if (sid == NULL) in eap_pax_get_session_id() 586 sid[0] = EAP_TYPE_PAX; in eap_pax_get_session_id() 587 os_memcpy(sid + 1, data->mid, EAP_PAX_MID_LEN); in eap_pax_get_session_id() 589 return sid; in eap_pax_get_session_id()
|
H A D | eap_server_eke.c | 769 u8 *sid; in eap_eke_get_session_id() local 776 sid = os_malloc(sid_len); in eap_eke_get_session_id() 777 if (sid == NULL) in eap_eke_get_session_id() 779 sid[0] = EAP_TYPE_EKE; in eap_eke_get_session_id() 780 os_memcpy(sid + 1, data->nonce_p, data->sess.nonce_len); in eap_eke_get_session_id() 781 os_memcpy(sid + 1 + data->sess.nonce_len, data->nonce_s, in eap_eke_get_session_id() 785 return sid; in eap_eke_get_session_id()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server_pax.c | 576 u8 *sid; in eap_pax_get_session_id() local 581 sid = os_malloc(1 + EAP_PAX_MID_LEN); in eap_pax_get_session_id() 582 if (sid == NULL) in eap_pax_get_session_id() 586 sid[0] = EAP_TYPE_PAX; in eap_pax_get_session_id() 587 os_memcpy(sid + 1, data->mid, EAP_PAX_MID_LEN); in eap_pax_get_session_id() 589 return sid; in eap_pax_get_session_id()
|
H A D | eap_server_eke.c | 770 u8 *sid; in eap_eke_get_session_id() local 777 sid = os_malloc(sid_len); in eap_eke_get_session_id() 778 if (sid == NULL) in eap_eke_get_session_id() 780 sid[0] = EAP_TYPE_EKE; in eap_eke_get_session_id() 781 os_memcpy(sid + 1, data->nonce_p, data->sess.nonce_len); in eap_eke_get_session_id() 782 os_memcpy(sid + 1 + data->sess.nonce_len, data->nonce_s, in eap_eke_get_session_id() 786 return sid; in eap_eke_get_session_id()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_cmd_vgpu10.c | 69 SVGA3dSurfaceId *sid, // OUT in surface_to_resourceid() 73 swc->surface_relocation(swc, sid, NULL, surface, flags); in surface_to_resourceid() 76 swc->surface_relocation(swc, sid, NULL, NULL, flags); in surface_to_resourceid() 483 swc->surface_relocation(swc, &sot->sid, NULL, surfaces[i], in SVGA3D_vgpu10_SetSOTargets() 489 swc->surface_relocation(swc, &sot->sid, NULL, NULL, in SVGA3D_vgpu10_SetSOTargets() 742 swc->surface_relocation(swc, &cmd->sid, NULL, surface, in SVGA3D_vgpu10_DefineShaderResourceView() 785 &cmd->sid, in SVGA3D_vgpu10_DefineRenderTargetView() 830 &cmd->sid, in SVGA3D_vgpu10_DefineDepthStencilView() 1199 swc->surface_relocation(swc, &bufs[i].sid, NULL, surfaces[i], in SVGA3D_vgpu10_SetVertexBuffers() 1268 swc->surface_relocation(swc, &cmd->sid, NUL in SVGA3D_vgpu10_SetIndexBuffer() 67 surface_to_resourceid(struct svga_winsys_context *swc, struct svga_winsys_surface *surface, SVGA3dSurfaceId *sid, unsigned flags) surface_to_resourceid() argument [all...] |
/third_party/toybox/toys/pending/ |
H A D | ipcrm.c | 33 struct arg_list *sid; 85 for (tmp = TT.sid; tmp; tmp = tmp->next) do_ipcrm(0, 3, tmp->arg); in ipcrm_main()
|
/third_party/selinux/libsepol/src/ |
H A D | kernel_to_cil.c | 557 char *sid; in write_sids_to_cil() local 569 i = isid->sid[0]; in write_sids_to_cil() 571 sid = (char *)sid_to_str[i]; in write_sids_to_cil() 574 sid = strdup(unknown); in write_sids_to_cil() 575 if (!sid) { in write_sids_to_cil() 581 rc = strs_add_at_index(strs, sid, i); in write_sids_to_cil() 588 sid = strs_read_at_index(strs, i); in write_sids_to_cil() 589 if (!sid) { in write_sids_to_cil() 592 sepol_printf(out, "(sid %s)\n", sid); in write_sids_to_cil() 2567 char *sid; write_sid_context_rules_to_cil() local [all...] |
/third_party/skia/third_party/externals/freetype/src/psnames/ |
H A D | psmodule.c | 529 ps_get_standard_strings( FT_UInt sid ) in ps_get_standard_strings() 531 if ( sid >= FT_NUM_SID_NAMES ) in ps_get_standard_strings() 534 return ft_standard_glyph_names + ft_sid_names[sid]; in ps_get_standard_strings()
|