Home
last modified time | relevance | path

Searched refs:pin (Results 1 – 25 of 217) sorted by relevance

123456789

/third_party/ffmpeg/libavdevice/
Ddshow_pin.c27 DECLARE_QUERYINTERFACE(pin, DShowPin,
29 DECLARE_ADDREF(pin, DShowPin) in DECLARE_ADDREF() argument
30 DECLARE_RELEASE(pin, DShowPin) in DECLARE_ADDREF()
32 long ff_dshow_pin_Connect(DShowPin *this, IPin *pin, const AM_MEDIA_TYPE *type) in DECLARE_ADDREF()
34 dshowdebug("ff_dshow_pin_Connect(%p, %p, %p)\n", this, pin, type); in DECLARE_ADDREF()
38 long ff_dshow_pin_ReceiveConnection(DShowPin *this, IPin *pin, in ff_dshow_pin_ReceiveConnection() argument
44 if (!pin) in ff_dshow_pin_ReceiveConnection()
58 IPin_AddRef(pin); in ff_dshow_pin_ReceiveConnection()
59 this->connectedto = pin; in ff_dshow_pin_ReceiveConnection()
78 long ff_dshow_pin_ConnectedTo(DShowPin *this, IPin **pin) in ff_dshow_pin_ConnectedTo() argument
[all …]
Ddshow_enumpins.c37 ff_dshow_pin_AddRef(this->pin); in DECLARE_ADDREF()
38 *pins = (IPin *) this->pin; in DECLARE_ADDREF()
67 new = ff_dshow_enumpins_Create(this->pin, this->filter); in ff_dshow_enumpins_Clone()
75 static int ff_dshow_enumpins_Setup(DShowEnumPins *this, DShowPin *pin, DShowFilter *filter) in ff_dshow_enumpins_Setup() argument
86 this->pin = pin; in ff_dshow_enumpins_Setup()
97 DECLARE_CREATE(enumpins, DShowEnumPins, ff_dshow_enumpins_Setup(this, pin, filter),
98 DShowPin *pin, DShowFilter *filter)
Ddshow_filter.c95 new = ff_dshow_enumpins_Create(this->pin, this); in ff_dshow_filter_EnumPins()
102 long ff_dshow_filter_FindPin(DShowFilter *this, const wchar_t *id, IPin **pin) in ff_dshow_filter_FindPin() argument
107 if (!id || !pin) in ff_dshow_filter_FindPin()
110 found = this->pin; in ff_dshow_filter_FindPin()
113 *pin = (IPin *) found; in ff_dshow_filter_FindPin()
172 this->pin = ff_dshow_pin_Create(this); in ff_dshow_filter_Setup()
182 ff_dshow_pin_Release(this->pin); in ff_dshow_filter_Cleanup()
Dfbdev_enc.c104 uint8_t *pin, *pout; in fbdev_write_packet() local
131 pin = pkt->data; in fbdev_write_packet()
141 pin -= fbdev->xoffset * bytes_per_pixel; in fbdev_write_packet()
158 pin -= fbdev->yoffset * src_line_size; in fbdev_write_packet()
171 memcpy(pout, pin, bytes_to_copy); in fbdev_write_packet()
173 pin += src_line_size; in fbdev_write_packet()
/third_party/boost/boost/geometry/srs/projections/impl/
Dpj_init.hpp439 parameters<T> pin; in pj_init() local
442 pj_init_proj(params, pin); in pj_init()
454 pj_datum_init(params, pin); in pj_init()
457 pj_ell_init(params, pin.a, pin.es); in pj_init()
459 pin.a_orig = pin.a; in pj_init()
460 pin.es_orig = pin.es; in pj_init()
462 pin.e = sqrt(pin.es); in pj_init()
463 pin.ra = 1. / pin.a; in pj_init()
464 pin.one_es = 1. - pin.es; in pj_init()
465 if (pin.one_es == 0.) { in pj_init()
[all …]
/third_party/libwebsockets/lib/plat/unix/
Dunix-plugins.c40 struct lws_plugin *pin; in lws_plat_dlopen() local
89 pin = *pplugin; in lws_plat_dlopen()
90 while (pin) { in lws_plat_dlopen()
91 if (!strcmp(pin->hdr->name, hdr->name)) in lws_plat_dlopen()
93 pin = pin->list; in lws_plat_dlopen()
100 pin = lws_malloc(sizeof(*pin), __func__); in lws_plat_dlopen()
101 if (!pin) in lws_plat_dlopen()
104 pin->list = *pplugin; in lws_plat_dlopen()
105 *pplugin = pin; in lws_plat_dlopen()
107 pin->u.l = l; in lws_plat_dlopen()
[all …]
/third_party/libwebsockets/lib/plat/windows/
Dwindows-plugins.c42 struct lws_plugin *pin; in lws_plat_dlopen() local
91 pin = *pplugin; in lws_plat_dlopen()
92 while (pin) { in lws_plat_dlopen()
93 if (!strcmp(pin->hdr->name, hdr->name)) in lws_plat_dlopen()
95 pin = pin->list; in lws_plat_dlopen()
102 pin = lws_malloc(sizeof(*pin), __func__); in lws_plat_dlopen()
103 if (!pin) in lws_plat_dlopen()
106 pin->list = *pplugin; in lws_plat_dlopen()
107 *pplugin = pin; in lws_plat_dlopen()
109 pin->u.lib = lib; in lws_plat_dlopen()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/p2p/
Dp2p_connect.py66 global pin
79 pin,wps_method,go_intent): argument
86 self.pin = pin
157 if (self.pin != None):
158 self.p2p_connect_arguements.update({'pin':self.pin})
171 if (self.pin != None):
172 self.p2p_connect_arguements.update({'pin':self.pin})
188 if (self.pin != None):
193 if (self.pin != None):
228 pin = None variable
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/p2p/
Dp2p_connect.py66 global pin
79 pin,wps_method,go_intent): argument
86 self.pin = pin
157 if (self.pin != None):
158 self.p2p_connect_arguements.update({'pin':self.pin})
171 if (self.pin != None):
172 self.p2p_connect_arguements.update({'pin':self.pin})
188 if (self.pin != None):
193 if (self.pin != None):
228 pin = None variable
[all …]
/third_party/libsnd/src/ALAC/
Ddp_enc.c78 int32_t * pin ; in pc_block() local
126 pin = in + j - 1 ; in pc_block()
128 b0 = top - pin [0] ; in pc_block()
129 b1 = top - pin [-1] ; in pc_block()
130 b2 = top - pin [-2] ; in pc_block()
131 b3 = top - pin [-3] ; in pc_block()
213 pin = in + j - 1 ; in pc_block()
215 b0 = top - (*pin--) ; in pc_block()
216 b1 = top - (*pin--) ; in pc_block()
217 b2 = top - (*pin--) ; in pc_block()
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ra_coalesce.cpp63 c->pin = v->pin_gpr; in create_chunk()
86 c1->pin = sel_chan(c1->pin.sel(), c2->pin.chan()); in unify_chunks()
91 c1->pin = sel_chan(c2->pin.sel(), c1->pin.chan()); in unify_chunks()
116 c1->pin.chan() != c2->pin.chan()) in chunks_interference()
120 c1->pin.sel() != c2->pin.sel()) in chunks_interference()
206 sblog << " REG = " << c->pin.sel(); in dump_chunk()
209 sblog << " CHAN = " << c->pin.chan(); in dump_chunk()
301 unsigned cs = c->is_chan_pinned() ? c->pin.chan() : 0; in color_chunks()
311 rs = c->pin.sel(); in color_chunks()
392 c->pin = color; in color_chunk()
[all …]
/third_party/libcoap/
DHOWTO.pkcs1151 softhsm2-util --init-token --slot 0 --label "token-0" --pin 1234 --so-pin 4321
56 --set-so-pin 4321 --id cc00 --mark-trusted "pkcs11:token=token-0"
62 --pin 1234 --token "token-0"
67 pkcs11-tool --module $LIBSOFTHSM --pin 1234 \
75 --pin 1234 --token "token-0"
80 pkcs11-tool --module $LIBSOFTHSM --pin 1234 \
87 --pin 1234 --token-label "token-0"
93 coap-server -C 'pkcs11:token=token-0;id=%cc%00?pin-value=1234' \
94 -c 'pkcs11:token=token-0;id=%aa%01?pin-value=1234' \
95 -j 'pkcs11:token=token-0;id=%aa%00?pin-value=1234' -v9
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
Dwps-ap-cli18 read pin
19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
26 cpin=`echo "$pin" | sed "s/[^1234567890]//g"`
34 echo "Invalid PIN: $pin"
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
Dwps-ap-cli18 read pin
19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
26 cpin=`echo "$pin" | sed "s/[^1234567890]//g"`
34 echo "Invalid PIN: $pin"
/third_party/gstreamer/gstplugins_bad/sys/dshowsrcwrapper/
Dgstdshow.h69 GstCapturePinMediaType *gst_dshow_new_pin_mediatype (IPin * pin);
72 GstCapturePinMediaType * gst_dshow_new_pin_mediatype_from_enum_mediatypes (IPin * pin,
76 GstCapturePinMediaType *gst_dshow_new_pin_mediatype_from_streamcaps (IPin * pin,
88 PIN_DIRECTION pindir, IPin ** pin);
107 gboolean gst_dshow_is_pin_connected (IPin *pin);
Dgstdshow.cpp78 gst_dshow_new_pin_mediatype (IPin * pin) in gst_dshow_new_pin_mediatype() argument
82 pin->AddRef (); in gst_dshow_new_pin_mediatype()
83 pin_mediatype->capture_pin = pin; in gst_dshow_new_pin_mediatype()
89 gst_dshow_new_pin_mediatype_from_enum_mediatypes (IPin * pin, IEnumMediaTypes *enum_mediatypes) in gst_dshow_new_pin_mediatype_from_enum_mediatypes() argument
91 GstCapturePinMediaType *pin_mediatype = gst_dshow_new_pin_mediatype (pin); in gst_dshow_new_pin_mediatype_from_enum_mediatypes()
112 gst_dshow_new_pin_mediatype_from_streamcaps (IPin * pin, gint id, IAMStreamConfig * streamcaps) in gst_dshow_new_pin_mediatype_from_streamcaps() argument
114 GstCapturePinMediaType *pin_mediatype = gst_dshow_new_pin_mediatype (pin); in gst_dshow_new_pin_mediatype_from_streamcaps()
160 IPin ** pin) in gst_dshow_get_pin_from_filter() argument
166 *pin = NULL; in gst_dshow_get_pin_from_filter()
177 *pin = pintmp; in gst_dshow_get_pin_from_filter()
[all …]
/third_party/boost/boost/numeric/odeint/stepper/
Dvelocity_verlet.hpp109 …void do_step( System system , CoorIn const & qin , VelocityIn const & pin , AccelerationIn const &… in do_step() argument
116 qout , qin , pin , ain , in do_step()
121 sys( qout , pin , aout , t + dt ); in do_step()
124 pout , pin , ain , aout , in do_step()
161 void initialize( System system , const CoorIn & qin , const VelocityIn & pin , time_type t ) in initialize() argument
166 initialize_acc( system , qin , pin , t ); in initialize()
178 void initialize_acc( System system , const CoorIn & qin , const VelocityIn & pin , time_type t ) in initialize_acc() argument
181 sys( qin , pin , get_current_acc() , t ); in initialize_acc()
/third_party/gstreamer/gstplugins_bad/sys/dshowdecwrapper/
Dgstdshowutil.cpp34 IPinPtr pin; in gst_dshow_get_pin_from_filter() local
42 while (enumpins->Next (1, &pin, NULL) == S_OK) in gst_dshow_get_pin_from_filter()
45 hres = pin->QueryDirection (&pindirtmp); in gst_dshow_get_pin_from_filter()
47 return pin; in gst_dshow_get_pin_from_filter()
49 pin.Release(); in gst_dshow_get_pin_from_filter()
/third_party/jerryscript/targets/mbedos5/tools/
Dgenerate_pins.py115 return [pin.name for pin in node.type.values.enumerators]
151 lengths = ',\n '.join(str(len(pin)) for pin in pins)
165 magic_strings = ',\n '.join('"' + pin + '"' for pin in pins)
/third_party/boost/libs/math/include_private/boost/math/tools/
Dremez.hpp111 …remez_minimax(function_type f, unsigned oN, unsigned oD, T a, T b, bool pin = true, bool rel_err =…
112 …remez_minimax(function_type f, unsigned oN, unsigned oD, T a, T b, bool pin, bool rel_err, int sk,…
114 …void reset(unsigned oN, unsigned oD, T a, T b, bool pin = true, bool rel_err = false, int sk = 0, …
115 …void reset(unsigned oN, unsigned oD, T a, T b, bool pin, bool rel_err, int sk, int bits, const vec…
285 bool pin, in reset() argument
290 control_points = vector_type(oN + oD + (pin ? 1 : 2)); in reset()
292 zeros = vector_type(oN + oD + (pin ? 2 : 3)); in reset()
297 pinned = pin; in reset()
338 bool pin, in remez_minimax() argument
345 reset(oN, oD, a, b, pin, rel_err, sk, bits); in remez_minimax()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
Dwps_registrar.c82 u8 *pin; member
92 static void wps_free_pin(struct wps_uuid_pin *pin) in wps_free_pin() argument
94 bin_clear_free(pin->pin, pin->pin_len); in wps_free_pin()
95 os_free(pin); in wps_free_pin()
99 static void wps_remove_pin(struct wps_uuid_pin *pin) in wps_remove_pin() argument
101 dl_list_del(&pin->list); in wps_remove_pin()
102 wps_free_pin(pin); in wps_remove_pin()
108 struct wps_uuid_pin *pin, *prev; in wps_free_pins() local
109 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins()
110 wps_remove_pin(pin); in wps_free_pins()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
Dwps_registrar.c83 u8 *pin; member
93 static void wps_free_pin(struct wps_uuid_pin *pin) in wps_free_pin() argument
95 bin_clear_free(pin->pin, pin->pin_len); in wps_free_pin()
96 os_free(pin); in wps_free_pin()
100 static void wps_remove_pin(struct wps_uuid_pin *pin) in wps_remove_pin() argument
102 dl_list_del(&pin->list); in wps_remove_pin()
103 wps_free_pin(pin); in wps_remove_pin()
109 struct wps_uuid_pin *pin, *prev; in wps_free_pins() local
110 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list) in wps_free_pins()
111 wps_remove_pin(pin); in wps_free_pins()
[all …]
Dwps_common.c212 unsigned int wps_pin_checksum(unsigned int pin) in wps_pin_checksum() argument
215 while (pin) { in wps_pin_checksum()
216 accum += 3 * (pin % 10); in wps_pin_checksum()
217 pin /= 10; in wps_pin_checksum()
218 accum += pin % 10; in wps_pin_checksum()
219 pin /= 10; in wps_pin_checksum()
231 unsigned int wps_pin_valid(unsigned int pin) in wps_pin_valid() argument
233 return wps_pin_checksum(pin / 10) == (pin % 10); in wps_pin_valid()
241 int wps_generate_pin(unsigned int *pin) in wps_generate_pin() argument
251 *pin = val * 10 + wps_pin_checksum(val); in wps_generate_pin()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dwps_supplicant.h35 const char *pin, int p2p_group, u16 dev_pw_id);
39 const char *pin, struct wps_new_ap_settings *settings);
53 const char *uuid, const char *pin);
56 const char *pin);
60 const char *pin, struct wps_new_ap_settings *settings);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Dwps_supplicant.h35 const char *pin, int p2p_group, u16 dev_pw_id);
39 const char *pin, struct wps_new_ap_settings *settings);
53 const char *uuid, const char *pin);
56 const char *pin);
60 const char *pin, struct wps_new_ap_settings *settings);

123456789