Searched refs:sd (Results 1 - 13 of 13) sorted by relevance

/haiku-fatelf/src/bin/gdb/include/gdb/
H A Dremote-sim.h119 void sim_close PARAMS ((SIM_DESC sd, int quitting));
145 SIM_RC sim_load PARAMS ((SIM_DESC sd, char *prog, struct bfd *abfd, int from_tty));
165 SIM_RC sim_create_inferior PARAMS ((SIM_DESC sd, struct bfd *abfd, char **argv, char **env));
172 int sim_read PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
179 int sim_write PARAMS ((SIM_DESC sd, SIM_ADDR mem, unsigned char *buf, int length));
191 int sim_fetch_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf, int length));
203 int sim_store_register PARAMS ((SIM_DESC sd, int regno, unsigned char *buf, int length));
210 void sim_info PARAMS ((SIM_DESC sd, int verbose));
235 void sim_resume PARAMS ((SIM_DESC sd, int step, int siggnal));
242 int sim_stop PARAMS ((SIM_DESC sd));
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/arch/ppc/
H A Dw_sqrt.c62 double sd,d; /* Difference between the square of the guess and x. */ local
86 sd = -(sg*sg - sx);
89 sg = sy*sd + sg; /* 16-bit approximation to sqrt(sx). */
92 sd = -(sg*sg - sx);
96 sg = sg + sy*sd; /* 32-bit approximation to sqrt(sx). */
99 sd = -(sg*sg - sx);
102 sg = sg + sy*sd; /* 64-bit approximation to sqrt(sx),
H A Dw_sqrtf.c62 float sd,d; /* Difference between the square of the guess and x. */ local
86 sd = -(sg*sg - sx);
89 sg = sy*sd + sg; /* 16-bit approximation to sqrt(sx). */
92 sd = -(sg*sg - sx);
97 sg = sg + sy*sd; /* 32-bit approximation to sqrt(sx),
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dsd.c3 #include "sd.h"
17 * The sd is returned in *@sd_val and has length *@sd_val_len.
25 SECURITY_DESCRIPTOR_RELATIVE *sd; local
37 sd = (SECURITY_DESCRIPTOR_RELATIVE*)&sd_array;
38 sd->revision = 1;
39 sd->alignment = 0;
40 sd->control = SE_SELF_RELATIVE | SE_DACL_PRESENT;
42 sd->owner = const_cpu_to_le32(0x48);
43 sd->group = const_cpu_to_le32(0x54);
44 sd
173 SECURITY_DESCRIPTOR_RELATIVE *sd; local
408 SECURITY_DESCRIPTOR_RELATIVE *sd; local
[all...]
H A Dmkntfs.c134 #include "sd.h"
1753 * Create the security descriptor attribute adding the security descriptor @sd
1758 static int add_attr_sd(MFT_RECORD *m, const u8 *sd, const s64 sd_len) argument
1767 CASE_SENSITIVE, const_cpu_to_le16(0), sd,
1772 CASE_SENSITIVE, const_cpu_to_le16(0), 0, sd,
3914 u8 *sd; local
3923 init_system_file_sd(FILE_Volume, &sd, &i);
3924 err = add_attr_sd(m, sd, i);
4011 u8 *sd; local
4115 init_root_sd(&sd,
[all...]
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dns32k-dis.c894 struct { unsigned lm; unsigned m:20, e:11, :1;} sd;
907 val = (p->sd.e == 0x7ff
908 || (p->sd.e == 0 && (p->sd.m != 0 || p->sd.lm != 0)));
888 struct { unsigned lm; unsigned m:20, e:11, :1;} sd; member in union:__anon4244
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dsnprintf.c671 long sd; local
678 sd = d; /* signed for ' ' padding in base 10 */
705 PUT_PLUS(sd, p, 0);
706 PUT_SPACE(sd, p, 0);
742 long long sd; local
749 sd = d; /* signed for ' ' padding in base 10 */
775 PUT_PLUS(sd, p, 0);
776 PUT_SPACE(sd, p, 0);
/haiku-fatelf/src/kits/interface/
H A DView.cpp3437 shape_data* sd = (shape_data*)shape->fPrivateData;
3438 if (sd->opCount == 0 || sd->ptCount == 0)
3446 fOwner->fLink->Attach<int32>(sd->opCount);
3447 fOwner->fLink->Attach<int32>(sd->ptCount);
3448 fOwner->fLink->Attach(sd->opList, sd->opCount * sizeof(uint32));
3449 fOwner->fLink->Attach(sd->ptList, sd->ptCount * sizeof(BPoint));
3461 shape_data* sd
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.c385 * @sd: self-relative security descriptor whose hash to calculate
386 * @length: size in bytes of the security descritor @sd
388 * Calculate the hash of the self-relative security descriptor @sd of length
399 le32 ntfs_security_hash(const SECURITY_DESCRIPTOR_RELATIVE *sd, const u32 len) argument
401 const le32 *pos = (const le32*)sd;
3182 /* JPA SECURITY_DESCRIPTOR_ATTR *sd; */
3183 SECURITY_DESCRIPTOR_RELATIVE *sd; local
3197 sd = (SECURITY_DESCRIPTOR_RELATIVE*)ntfs_calloc(sd_len);
3198 if (!sd)
3201 sd
[all...]
H A Dsecurity.h247 extern le32 ntfs_security_hash(const SECURITY_DESCRIPTOR_RELATIVE *sd,
/haiku-fatelf/src/tests/kits/net/netperf/
H A Dnetlib.h487 extern void set_sock_buffer(SOCKET sd,
H A Dnetlib.c2522 set_sock_buffer (SOCKET sd, enum sock_buffer which, int requested_size, int *effective_sizep)
2535 if (setsockopt(sd, SOL_SOCKET, optname,
2556 if (getsockopt(sd, SOL_SOCKET, optname, (char *)effective_sizep,
2500 set_sock_buffer(SOCKET sd, enum sock_buffer which, int requested_size, int *effective_sizep) argument
/haiku-fatelf/src/add-ons/kernel/drivers/network/marvell_yukon/dev/msk/
H A Dif_msk.c3590 struct msk_stat_desc *sd; local
3605 sd = &sc->msk_stat_ring[cons];
3606 control = le32toh(sd->msk_control);
3610 sd->msk_control = htole32(control);
3611 status = le32toh(sd->msk_status);

Completed in 109 milliseconds