HomeSort by: relevance | last modified time | path
    Searched refs:sid (Results 1 - 25 of 251) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/sys/external/gpl2/dts/dist/include/dt-bindings/iio/
qcom,spmi-adc7-pm8350.h 14 #define PM8350_ADC7_REF_GND(sid) ((sid) << 8 | ADC7_REF_GND)
15 #define PM8350_ADC7_1P25VREF(sid) ((sid) << 8 | ADC7_1P25VREF)
16 #define PM8350_ADC7_VREF_VADC(sid) ((sid) << 8 | ADC7_VREF_VADC)
17 #define PM8350_ADC7_DIE_TEMP(sid) ((sid) << 8 | ADC7_DIE_TEMP)
19 #define PM8350_ADC7_AMUX_THM1(sid) ((sid) << 8 | ADC7_AMUX_THM1
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_vector_clock.h 24 Epoch Get(Sid sid) const;
25 void Set(Sid sid, Epoch v);
40 ALWAYS_INLINE Epoch VectorClock::Get(Sid sid) const {
41 return clk_[static_cast<u8>(sid)];
44 ALWAYS_INLINE void VectorClock::Set(Sid sid, Epoch v) {
45 DCHECK_GE(v, clk_[static_cast<u8>(sid)]);
    [all...]
tsan_shadow.h 28 void SetSid(Sid sid) { part_.sid_ = static_cast<u8>(sid); }
30 Sid sid() const { return static_cast<Sid>(part_.sid_); } function in class:__tsan::FastState
65 UNUSED Sid sid0 = part_.sid_;
73 DCHECK_EQ(sid(), sid0);
80 Sid sid() const { return part_.sid_; function in class:__tsan::Shadow
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_vector_clock.h 24 Epoch Get(Sid sid) const;
25 void Set(Sid sid, Epoch v);
40 ALWAYS_INLINE Epoch VectorClock::Get(Sid sid) const {
41 return clk_[static_cast<u8>(sid)];
44 ALWAYS_INLINE void VectorClock::Set(Sid sid, Epoch v) {
45 DCHECK_GE(v, clk_[static_cast<u8>(sid)]);
    [all...]
  /src/tests/lib/libc/sys/
t_getsid.c 50 pid_t sid; local
52 sid = getsid(0);
53 ATF_REQUIRE(sid != -1);
55 if (sid != getsid(getpid()))
82 pid_t csid, pid, ppid, sid; local
85 sid = getsid(0);
89 ATF_REQUIRE(sid != -1);
96 if (sid != csid)
  /src/sys/dev/arcbios/
arcbios.c 74 struct arcbios_sysid *sid; local
103 sid = arcbios_GetSystemId();
104 if (sid != NULL) {
105 memcpy(arcbios_sysid_vendor, sid->VendorId,
106 sizeof(sid->VendorId));
107 arcbios_sysid_vendor[sizeof(sid->VendorId)] = '\0';
109 memcpy(arcbios_sysid_product, sid->ProductId,
110 sizeof(sid->ProductId));
111 arcbios_sysid_product[sizeof(sid->ProductId)] = '\0';
  /src/sys/netinet6/
scope6.c 58 #define SID(ifp) \
72 struct scope6_id *sid; local
74 sid = malloc(sizeof(*sid), M_IFADDR, M_WAITOK | M_ZERO);
80 sid->s6id_list[IPV6_ADDR_SCOPE_INTFACELOCAL] = ifp->if_index;
81 sid->s6id_list[IPV6_ADDR_SCOPE_LINKLOCAL] = ifp->if_index;
84 sid->s6id_list[IPV6_ADDR_SCOPE_SITELOCAL] = 1;
85 sid->s6id_list[IPV6_ADDR_SCOPE_ORGLOCAL] = 1;
88 return sid;
92 scope6_ifdetach(struct scope6_id *sid)
289 const struct scope6_id *sid = SID(ifp); local
    [all...]
  /src/external/gpl2/send-pr/bin/
Makefile 54 CLEANFILES= send-pr send-pr.1 send-pr.el install-sid
56 realall: send-pr send-pr.1 send-pr.el install-sid
74 install-sid: install-sid.sh Makefile
77 -e 's,xVERSIONx,$(VERSION),g' $(srcdir)/install-sid.sh > $@-t
99 FILES=send-pr install-sid
101 FILESMODE_install-sid=${BINMODE}
  /src/sbin/iscsid/
iscsid_lists.c 112 if (curr->sid.id == id)
136 if (strcmp((char *)curr->sid.name, (char *)name) == 0)
153 find_sym_id(generic_list_t * head, iscsid_sym_id_t * sid)
156 if (sid->id != 0)
157 return find_id(head, sid->id);
159 return (sid->name[0]) ? find_name(head, sid->name) : NULL;
173 get_id(generic_list_t * head, iscsid_sym_id_t * sid)
177 if (sid->id != 0)
178 return sid->id
    [all...]
iscsid_globals.h 101 iscsid_sym_id_t sid; /* the entry ID and name */ member in struct:generic_entry_s
294 iscsid_sym_id_t sid; /* the entry ID and name */ member in struct:target_info_s
305 iscsid_sym_id_t sid; /* the entry ID and name */ member in struct:portal_info_s
397 #define NO_ID(sid) (!(sid)->id && !(sid)->name[0])
440 #define find_isns(sid) \
441 (isns_t *)(void *)find_sym_id(&list [ISNS_LIST].list, sid)
442 #define find_session(sid) \
443 (session_t *)(void *)find_sym_id(&list [SESSION_LIST].list, sid)
    [all...]
iscsid_targets.c 89 portal->entry.sid.id = portarget_id;
191 target->entry.sid.id = portarget_id;
257 target->entry.sid.id = send_target_id;
280 id = send_target->entry.sid.id;
344 strlcpy((char *)target->entry.sid.name, (char *)par->sym_name, sizeof(target->entry.sid.name));
364 strlcpy((char *)target->entry.sid.name, (char *)par->sym_name,
365 sizeof(target->entry.sid.name));
374 res->target_id = target->entry.sid.id;
390 res->portal_id[0] = target->entry.sid.id
    [all...]
iscsid_driverif.c 219 sess->target.sid.id)) == NULL)) {
242 (portal = find_portal_id(conn->portal.sid.id)) == NULL) {
253 DEB(1, ("find_free_portal returns pid=%d", portal->entry.sid.id));
448 conn->entry.sid.id = loginp.connection_id;
450 strlcpy((char *)conn->entry.sid.name, (char *)req->sym_name,
451 sizeof(conn->entry.sid.name));
457 conn->target.sid = target->entry.sid;
472 sess->entry.sid.id = loginp.session_id;
477 rsp->connection_id = conn->entry.sid;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/ltc/
nouveau_nvkm_subdev_ltc_gp10b.c 47 u32 sid = spec->ids[0] & 0xffff; local
50 nvkm_wr32(device, 0x160000, sid << 2);
  /src/external/bsd/tmux/dist/
osdep-linux.c 68 pid_t pgrp, sid; local
78 if (n == -1 && ioctl(fd, TIOCGSID, &sid) != -1) {
79 xasprintf(&path, "/proc/%lld/cwd", (long long) sid);
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/xsm/
flask_op.h 42 /* IN/OUT: sid to convert to/from string */
43 uint32_t sid; member in struct:xen_flask_sid_context
69 /* OUT: new SID */
75 /* IN: starting SID for list */
83 /* OUT: SID list */
138 uint32_t sid; member in struct:xen_flask_ocontext
146 uint32_t sid; member in struct:xen_flask_peersid
152 uint32_t sid; member in struct:xen_flask_relabel
157 uint32_t sid; member in struct:xen_flask_devicetree_label
  /src/sys/arch/arm/apple/
apple_dart.c 68 #define DART_TCR(sid) (0x0100 + (sid) * 0x4)
72 #define DART_TTBR(sid, idx) (0x0200 + (sid) * 0x10 + (idx) * 0x4)
544 u_int sid, idx; local
582 for (sid = 0; sid < DART_NUM_STREAMS; sid++) {
583 DART_WRITE(sc, DART_TCR(sid),
610 for (sid = 0; sid < sc->sc_nsid; sid++)
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
quicfaultstest.c 102 uint64_t sid = UINT64_MAX; local
123 if (!TEST_true(ossl_quic_tserver_stream_new(qtserv, /*is_uni=*/0, &sid))
124 || !TEST_uint64_t_eq(sid, 1))
127 if (!TEST_true(ossl_quic_tserver_write(qtserv, sid, (unsigned char *)msg, msglen,
271 uint64_t sid = UINT64_MAX; local
300 if (!TEST_true(ossl_quic_tserver_stream_new(qtserv, /*is_uni=*/0, &sid))
301 || !TEST_uint64_t_eq(sid, 1))
308 if (!TEST_true(ossl_quic_tserver_write(qtserv, sid, (unsigned char *)msg, 5,
324 if (!TEST_true(ossl_quic_tserver_write(qtserv, sid, (unsigned char *)msg + 5,
  /src/external/bsd/openldap/dist/servers/slapd/
ldapsync.c 44 int sid,
61 if ( sid >= 0 ) {
62 len += sprintf( cookiestr+len, ",sid=%03x", sid );
78 if ( sid >= 0 )
79 len += STRLENOF("sid=xxx,");
85 if ( sid >= 0 ) {
86 ptr += sprintf( ptr, "sid=%03x,", sid );
221 /* sort CSNs by SID. Use a fake Attribute with our ow
    [all...]
slapcommon.c 979 unsigned long sid,
987 if ( !(update_ctxcsn && !dryrun && sid != SLAP_SYNC_SID_MAX + 1) ) {
1001 for ( sid = 0; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
1002 if ( maxcsn[ sid ].bv_len ) {
1004 &maxcsn[ sid ], NULL );
1041 "%s: unable to extract SID "
1050 sid = (unsigned)rc_sid;
1052 if ( maxcsn[ sid ].bv_len == 0 )
1123 unsigned long sid = SLAP_SYNC_SID_MAX + 1; local
1167 unsigned long sid; local
    [all...]
  /src/sys/arch/x86/include/
via_padlock.h 69 #define VIAC3_SESSION(sid) ((sid) & 0x0fffffff)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/
cpcompletion.exp 63 proc maket {sid name {num 1}} {
66 # the order in SID so that when they are popped again below,
72 while {![stack empty $sid]} {
73 stack push $paramstack [stack pop $sid]
77 stack push $paramstack [stack pop $sid]
82 # top of the stack given by SID.
106 stack push $sid $result
110 # Given the stack SID and the name of a variable of the desired template
114 proc makearg {sid arglistvar} {
122 makearg $sid arglis
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/
cpcompletion.exp 63 proc maket {sid name {num 1}} {
66 # the order in SID so that when they are popped again below,
72 while {![stack empty $sid]} {
73 stack push $paramstack [stack pop $sid]
77 stack push $paramstack [stack pop $sid]
82 # top of the stack given by SID.
106 stack push $sid $result
110 # Given the stack SID and the name of a variable of the desired template
114 proc makearg {sid arglistvar} {
122 makearg $sid arglis
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga3d_cmd.h 336 uint32 sid; member in struct:__anon5568
362 uint32 sid; member in struct:__anon5569
390 uint32 sid; member in struct:__anon5570
448 uint32 sid; member in struct:__anon5575
792 uint32 indexBufferSid; /* Valid index buffer sid. */
861 uint32 sid; member in struct:__anon5595
1165 uint32 sid; member in struct:__anon5621
1174 uint32 sid; member in struct:__anon5622
1182 uint32 sid; member in struct:__anon5623
1459 uint32 sid; member in struct:__anon5633
1673 uint32 sid; member in struct:SVGA3dCmdDefineGBSurface
1690 uint32 sid; member in struct:SVGA3dCmdDefineGBSurface_v2
1709 uint32 sid; member in struct:SVGA3dCmdDefineGBSurface_v3
1730 uint32 sid; member in struct:SVGA3dCmdDestroyGBSurface
1742 uint32 sid; member in struct:SVGA3dCmdBindGBSurface
1751 uint32 sid; member in struct:SVGA3dCmdBindGBSurfaceWithPitch
1771 uint32 sid; member in struct:SVGA3dCmdCondBindGBSurface
1801 uint32 sid; member in struct:SVGA3dCmdUpdateGBSurface
1827 uint32 sid; member in struct:SVGA3dCmdReadbackGBSurface
1871 uint32 sid; member in struct:SVGA3dCmdInvalidateGBSurface
    [all...]
  /src/sbin/iscsictl/
iscsic_globals.h 133 #define NO_ID(sid) (!(sid)->id && !(sid)->name[0])
  /src/external/bsd/ppp/dist/pppd/
termios_linux.h 110 pid_t sid; local
112 if (ioctl(fd, TIOCGSID, &sid) < 0)
115 return sid;

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011