Searched refs:point (Results 26 - 50 of 152) sorted by relevance

1234567

/freebsd-10-stable/crypto/openssl/crypto/ecdsa/
H A Decs_ossl.c335 EC_POINT *point = NULL; local
406 if ((point = EC_POINT_new(group)) == NULL) {
410 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
416 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
424 if (!EC_POINT_get_affine_coordinates_GF2m(group, point, X, NULL, ctx)) {
439 if (point)
440 EC_POINT_free(point);
/freebsd-10-stable/contrib/texinfo/info/
H A Dsession.c336 /* Reset the remembered pagetop and point of WINDOW to WINDOW's current
353 info_win->points[info_win->current] = window->point;
379 /* If this node, the current pagetop, and the current point are the
387 && info_win->points[info_win->current] == window->point)
391 location of point in this window. Because we are updating pagetops
407 info_win->points[info_win->nodes_index] = window->point;
527 /* Make sure that point appears in this window. */
531 window->point =
572 /* Immediately make WINDOW->point visible on the screen, and move the
596 /* Move WINDOW->point fro
652 register int point, len; local
672 register int point; local
725 long point; local
774 long point; local
3008 long point; local
[all...]
H A Dwindow.c579 /* Make sure that point appears within this window. */
599 window->point = 0;
603 window->point = node ? node->display_pos : 0;
911 point visible. A user might set this to 1 for smooth scrolling. If
912 set to zero, the line containing point is centered within the window. */
915 /* Adjust the pagetop of WINDOW such that the cursor point will be visible. */
927 /* Find the first printed line start which is after WINDOW->point. */
934 if ((line_start - contents) > window->point)
938 /* The line index preceding the line start which is past point is the
939 one containing point
[all...]
H A Dwindow.h50 long point /* Offset within NODE of the cursor position. */
67 WINDOW_STATE_DECL; /* Node, pagetop and point. */
80 WINDOW_STATE_DECL; /* The node, pagetop and point. */
101 point visible. A user might set this to 1 for smooth scrolling. If
102 set to zero, the line containing point is centered within the window. */
145 /* Adjust the pagetop of WINDOW such that the cursor point will be visible. */
224 /* Return the index of the line containing point. */
233 /* Get and Set the node, pagetop, and point of WINDOW. */
H A Decho-area.c90 calling_window_point = window->point;
112 calling_window->point = calling_window_point;
231 /* Restore the original active window and show point in it. */
271 the_echo_area->point = input_line_point;
376 characters just before point. */
504 /* Transpose the characters at point. If point is at the end of the line,
505 then transpose the characters before point. */
506 DECLARE_INFO_COMMAND (ea_transpose_chars, _("Transpose characters at point"))
576 point i
1388 int point, beg, end; member in struct:__anon4668
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ec/
H A Dec2_mult.c77 * Compute the x-coordinate x/z for the point 2*(x/z) in Montgomery projective
119 * Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery
164 * Compute the x, y affine coordinates from the point (x1, z1) (x2, z2)
165 * using Montgomery point multiplication algorithm Mxy() in appendix of
170 * 1 if return value should be the point at infinity
254 * Computes scalar*point and stores the result in r.
255 * point can not equal r.
266 const EC_POINT *point,
273 if (r == point) {
278 /* if result should be point a
263 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
[all...]
H A Dec.h103 /** Enum for the point conversion form as defined in X9.62 (ECDSA)
104 * for the encoding of a elliptic curve point (x,y) */
106 /** the point is encoded as z||x, where the octet z specifies
109 /** the point is encoded as z||x||y, where z is the octet 0x04 */
111 /** the point is encoded as z||x||y, where the octet z specifies
418 * \param point EC_POINT object to be freed
420 void EC_POINT_free(EC_POINT *point);
423 * \param point EC_POINT object to be cleared and freed
425 void EC_POINT_clear_free(EC_POINT *point);
443 * \param point EC_POIN
[all...]
H A Deck_prn.c150 const EC_POINT *point = NULL; local
216 if ((point = EC_GROUP_get0_generator(x)) == NULL) {
228 if ((gen = EC_POINT_point2bn(x, point, form, NULL, ctx)) == NULL) {
H A Dec_asn1.c550 const EC_POINT *point = NULL; local
581 /* set the base point */
582 if ((point = EC_GROUP_get0_generator(group)) == NULL) {
589 len = EC_POINT_point2oct(group, point, form, NULL, len, NULL);
598 if (!EC_POINT_point2oct(group, point, form, buffer, len, NULL)) {
695 EC_POINT *point = NULL; local
868 if ((point = EC_POINT_new(ret)) == NULL)
871 /* set the point conversion form */
875 /* extract the ec point */
876 if (!EC_POINT_oct2point(ret, point, param
[all...]
/freebsd-10-stable/sys/boot/i386/gptboot/
H A Dgptldr.S41 .set MEM_JMP,0x9010 # BTX entry point
81 dec %si # Set %ds:%si to point at the
87 mov $MEM_USR/16,%ax # Set %es:(-1) to point at
92 add $COPY_BLK_SZ,%si # Adjust %ds:%si to point at
96 mov $COPY_BLK_SZ-1,%di # Adjust %es:%di to point at
/freebsd-10-stable/sys/boot/i386/btx/lib/
H A Dbtxcsu.S29 # Client entry point.
/freebsd-10-stable/sys/boot/pc98/btx/lib/
H A Dbtxcsu.S29 # Client entry point.
/freebsd-10-stable/crypto/openssh/
H A Dopacket.c101 const EC_POINT *point)
105 if ((r = sshpkt_put_ec(ssh, point, curve)) != 0)
176 ssh_packet_get_ecpoint(struct ssh *ssh, const EC_GROUP *curve, EC_POINT *point) argument
180 if ((r = sshpkt_get_ec(ssh, point, curve)) != 0)
100 ssh_packet_put_ecpoint(struct ssh *ssh, const EC_GROUP *curve, const EC_POINT *point) argument
/freebsd-10-stable/contrib/apr-util/include/
H A Dapr_buckets.h201 * @param point The offset of the first byte in the new bucket
203 apr_status_t (*split)(apr_bucket *e, apr_size_t point);
249 * used to allocate the bucket, this pointer should point to free().
719 * @param point The offset at which to partition the brigade
722 * brigade were shorter than @a point, or an error code.
727 apr_off_t point,
1041 * point to stop reading buckets.
1084 * Split one bucket in two at the point provided.
1091 * @param point The offset to split the bucket at
1093 #define apr_bucket_split(e,point) (
[all...]
/freebsd-10-stable/contrib/gdb/gdb/
H A Dremote-rdi.c120 PointHandle point; member in struct:local_bp_list_entry
438 PointHandle point;
442 rslt = angel_RDI_step (1, &point);
458 execute_status = rslt = angel_RDI_execute (&point);
549 /* These need to be able to take 'floating point register' contents */
687 PointHandle point;
693 rslt = angel_RDI_setbreak (addr, type, 0, &point);
701 entry->point = point;
711 PointHandle point;
436 PointHandle point; local
680 PointHandle point; local
704 PointHandle point; local
[all...]
/freebsd-10-stable/sys/sys/
H A Dktr.h165 * etype is the type of event to plot (state, counter, point)
166 * edat is the event specific data (state name, counter value, point name)
234 #define KTR_POINT0(m, egroup, ident, point) \
235 KTR_EVENT0(m, egroup, ident, "point:\"%s\"", point)
236 #define KTR_POINT1(m, egroup, ident, point, a0, v0) \
237 KTR_EVENT1(m, egroup, ident, "point:\"%s\"", point, a0, (v0))
238 #define KTR_POINT2(m, egroup, ident, point, a0, v0, a1, v1) \
239 KTR_EVENT2(m, egroup, ident, "point
[all...]
/freebsd-10-stable/contrib/groff/src/preproc/pic/
H A Dtex.cpp57 void point(const position &);
113 /* The point of \vskip 0pt is to ensure that the vtop gets
173 void tex_output::point(const position &pos) function in class:tex_output
183 point(start);
185 point(v[i]);
221 point(start);
223 point(v[i]);
/freebsd-10-stable/contrib/libreadline/
H A Dtext.c76 /* Insert a string of text into the line at point. This is the only
156 /* Fix up point so that it is within the line boundaries after killing
289 int point; local
299 point = _rl_find_next_mbchar (rl_line_buffer, rl_point, count, MB_FIND_NONZERO);
302 if (rl_end <= point && rl_editing_mode == vi_mode)
303 point = _rl_find_prev_mbchar (rl_line_buffer, rl_end, MB_FIND_NONZERO);
306 if (rl_point == point)
309 rl_point = point;
365 int point; local
375 point
[all...]
/freebsd-10-stable/lib/libedit/
H A Dfilecomplete.c104 /* update pointer txt to point at string immediately following */
368 * Complete the word at or before point,
385 int *completion_type, int *over, int *point, int *end,
443 if (point != 0)
444 *point = (int)(li->cursor - li->buffer);
380 fn_complete(EditLine *el, char *(*complet_func)(const char *, int), char **(*attempted_completion_function)(const char *, int, int), const char *word_break, const char *special_prefixes, const char *(*app_func)(const char *), size_t query_items, int *completion_type, int *over, int *point, int *end, const char *(*find_word_start_func)(const char *, const char *), char *(*dequoting_func)(const char *), char *(*quoting_func)(const char *)) argument
/freebsd-10-stable/sys/conf/
H A Dkern.mk51 # and above adds code to the entry and exit point of every function to align the
94 # point emulation. This avoids using floating point registers for integer
130 # For PowerPC we tell gcc to use floating point emulation. This avoids using
131 # floating point registers for integer operations which it has a tendency to do.
147 # For MIPS we also tell gcc to use floating point emulation
/freebsd-10-stable/contrib/subversion/subversion/libsvn_client/
H A Dblame.c171 /* Shift the start-point of BLAME and all subsequence blame-chunks
234 struct blame *point = blame_find(head, start); local
237 if (point->start == start)
239 insert = blame_create(chain, point->rev, point->start + length);
240 point->rev = rev;
241 insert->next = point->next;
242 point->next = insert;
248 insert = blame_create(chain, point->rev, start + length);
250 insert->next = point
[all...]
/freebsd-10-stable/contrib/gdb/gdb/cli/
H A Dcli-cmds.c234 char **completions, *point, *arg_prefix;
246 point = arg + argpoint;
247 while (point > arg)
249 if (strchr (rl_completer_word_break_characters, point[-1]) != 0)
251 point--;
254 arg_prefix = alloca (point - arg + 1);
255 memcpy (arg_prefix, arg, point - arg);
256 arg_prefix[point - arg] = 0;
258 completions = complete_line (point, arg, argpoint);
230 char **completions, *point, *arg_prefix; local
/freebsd-10-stable/libexec/rtld-elf/i386/
H A Drtld_start.S45 call _rtld # Call rtld(sp); returns entry point
50 * At this point, %eax contains the entry point of the main program, and
60 * Binder entry point. Control is transferred to here by code in the PLT.
82 /* Now %eax contains the entry point of the function being called. */
/freebsd-10-stable/contrib/apr-util/dbd/
H A DNWGNUdbdmysql34 $(error MYSQLSDK does not point to a valid MySQL SDK)
/freebsd-10-stable/contrib/groff/src/roff/troff/
H A Dnode.cpp800 void determine_line_limits (char code, hvpair *point, int npoints);
1329 // the entity, code, built from the point array.
1330 void troff_output_file::determine_line_limits(char code, hvpair *point, argument
1343 output_vpos - point[0].h.to_units()/2);
1344 check_output_limits(output_hpos + point[0].h.to_units(),
1345 output_vpos + point[0].h.to_units()/2);
1350 output_vpos - point[0].v.to_units()/2);
1351 check_output_limits(output_hpos + point[0].h.to_units(),
1352 output_vpos + point[0].v.to_units()/2);
1360 x += point[
1415 draw(char code, hvpair *point, int npoints, font_size fsize, color *gcol, color *fcol) argument
4478 a_delete point; local
[all...]

Completed in 415 milliseconds

1234567