Home
last modified time | relevance | path

Searched refs:CTX (Results 1 – 25 of 2109) sorted by relevance

12345678910>>...85

/dports/devel/efl/efl-1.25.1/data/elementary/themes/edc/elm/
H A Dicon_fdo.edc99 #undef CTX
118 #undef CTX
253 #undef CTX
357 #undef CTX
363 #undef CTX
390 #undef CTX
414 #undef CTX
463 #undef CTX
489 #undef CTX
587 #undef CTX
[all …]
/dports/mail/dspam/dspam-3.10.2/src/
H A Dlibdspam.c133 return CTX; in dspam_init()
164 DSPAM_CTX *CTX; in dspam_create() local
222 return CTX; in dspam_create()
237 free(CTX); in dspam_create()
413 if (CTX->config && CTX->config->attributes) in dspam_destroy()
421 if (! CTX->_sig_provided && CTX->signature != NULL) { in dspam_destroy()
429 free (CTX); in dspam_destroy()
812 CTX->signature->data = malloc(CTX->signature->length); in _ds_operate()
984 CTX->signature->data = malloc (CTX->signature->length); in _ds_operate()
2134 CTX->confidence = CTX->probability; in _ds_calc_result()
[all …]
H A Dexample.c138 if (CTX == NULL) in main()
160 CTX->confidence, in main()
174 memcpy (SIG.data, CTX->signature->data, CTX->signature->length); in main()
179 dspam_destroy(CTX); in main()
195 if (CTX == NULL) in main()
219 dspam_destroy (CTX); in main()
236 if (CTX == NULL) in main()
254 CTX->signature = &SIG; in main()
264 dspam_destroy(CTX); in main()
280 if (CTX == NULL) in main()
[all …]
H A Dmysql_drv.c336 if (!CTX->group || CTX->flags & DSF_MERGED) { in _mysql_drv_get_spamtotals()
337 p = _mysql_drv_getpwnam (CTX, CTX->username); in _mysql_drv_get_spamtotals()
340 p = _mysql_drv_getpwnam (CTX, CTX->group); in _mysql_drv_get_spamtotals()
355 p = _mysql_drv_getpwnam (CTX, CTX->group); in _mysql_drv_get_spamtotals()
564 if (!CTX->group || CTX->flags & DSF_MERGED) { in _mysql_drv_set_spamtotals()
568 p = _mysql_drv_getpwnam (CTX, CTX->group); in _mysql_drv_set_spamtotals()
791 if (!CTX->group || CTX->flags & DSF_MERGED) { in _ds_getall_spamrecords()
795 p = _mysql_drv_getpwnam (CTX, CTX->group); in _ds_getall_spamrecords()
809 p = _mysql_drv_getpwnam (CTX, CTX->group); in _ds_getall_spamrecords()
994 p = _mysql_drv_getpwnam (CTX, CTX->group); in _ds_setall_spamrecords()
[all …]
H A Dpgsql_drv.c189 if (!CTX->group || CTX->flags & DSF_MERGED) { in _pgsql_drv_get_spamtotals()
190 p = _pgsql_drv_getpwnam (CTX, CTX->username); in _pgsql_drv_get_spamtotals()
193 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _pgsql_drv_get_spamtotals()
208 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _pgsql_drv_get_spamtotals()
416 if (!CTX->group || CTX->flags & DSF_MERGED) { in _pgsql_drv_set_spamtotals()
420 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _pgsql_drv_set_spamtotals()
636 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _ds_getall_spamrecords()
650 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _ds_getall_spamrecords()
798 p = _pgsql_drv_getpwnam (CTX, CTX->group); in _ds_setall_spamrecords()
2842 if (CTX) dspam_destroy(CTX); in _ds_pref_set()
[all …]
/dports/math/bsdnt/bsdnt-de98bde/rand/
H A Dkiss.c64 CTX(c)->z = 36969*(CTX(c)->z & 65536) + (CTX(c)->z>>16); in kiss_word()
65 CTX(c)->w = 18000*(CTX(c)->w & 65536) + (CTX(c)->w>>16); in kiss_word()
71 CTX(c)->s ^= (CTX(c)->s << 17); in kiss_word()
72 CTX(c)->s ^= (CTX(c)->s >> 13); in kiss_word()
73 CTX(c)->s ^= (CTX(c)->s << 5); in kiss_word()
110 CTX(c)->c = CTX(c)->x >> 6; in kiss_word()
112 CTX(c)->c += (CTX(c)->x < t); in kiss_word()
114 CTX(c)->y ^= (CTX(c)->y << 13); in kiss_word()
115 CTX(c)->y ^= (CTX(c)->y >> 17); in kiss_word()
116 CTX(c)->y ^= (CTX(c)->y << 43); in kiss_word()
[all …]
H A Dskiss.c48 #define CNG(p) (CTX(p)->xcng = WORD(69069) * CTX(p)->xcng + WORD(123))
49 #define XS(p) (CTX(p)->xs ^= CTX(p)->xs << 13, CTX(p)->xs ^= CTX(p)->xs >> 17, \
50 CTX(p)->xs ^= CTX(p)->xs << 5)
51 #define SUPR(p) ((CTX(p)->indx < 41265L) ? CTX(p)->q[CTX(p)->indx++] : refill(CTX(p)))
84 z = ((CTX(c)->q[i] << 9) >> 1) + ((CTX(c)->q[i] << 7) >> 1) in refill()
86 CTX(c)->carry = (CTX(c)->q[i] >> 23) + (CTX(c)->q[i] >> 25) in refill()
114 #define CNG(x) ( CTX(x)->xcng = WORD(6906969069) * CTX(x)->xcng + 123 )
115 #define XS(x) ( CTX(x)->xs ^= CTX(x)->xs << 13, CTX(x)->xs ^= CTX(x)->xs >> 17, CTX(x)->xs ^= CTX
116 #define SUPR(x) ( CTX(x)->indx < 20632 ? CTX(x)->q[CTX(x)->indx++] : refill(CTX(x)) )
127 z = ((CTX(c)->q[i] << 41) >> 1) + ((CTX(c)->q[i] << 39) >> 1) in refill()
[all …]
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_data_structures/src/
H A Dstable_hasher.rs212 impl<CTX> HashStable<CTX> for ! {
230 impl<CTX> HashStable<CTX> for f32 {
237 impl<CTX> HashStable<CTX> for f64 {
250 impl<T1: HashStable<CTX>, CTX> HashStable<CTX> for (T1,) {
257 impl<T1: HashStable<CTX>, T2: HashStable<CTX>, CTX> HashStable<CTX> for (T1, T2) {
295 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for [T] {
304 impl<CTX> HashStable<CTX> for [u8] {
311 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for Vec<T> {
357 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for Box<T> {
378 impl<CTX> HashStable<CTX> for str {
[all …]
/dports/security/libxcrypt/libxcrypt-4.4.27/lib/
H A Dalg-gost3411-2012-core.c54 if (CTX->bufsize < sizeof CTX->buffer) in pad()
56 memset (CTX->buffer + CTX->bufsize, 0, in pad()
57 sizeof(CTX->buffer) - CTX->bufsize); in pad()
58 CTX->buffer[CTX->bufsize] = 0x01; in pad()
154 g(&(CTX->h), &(CTX->N), (const unsigned char *)&m); in stage2()
156 add512(&(CTX->N), &buffer512, &(CTX->N)); in stage2()
157 add512(&(CTX->Sigma), &m, &(CTX->Sigma)); in stage2()
171 pad(CTX); in stage3()
173 g(&(CTX->h), &(CTX->N), (const unsigned char *) &(CTX->buffer)); in stage3()
175 add512(&(CTX->N), &buf, &(CTX->N)); in stage3()
[all …]
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_data_structures-722.0.0/src/
H A Dstable_hasher.rs224 impl<CTX> HashStable<CTX> for f32 {
231 impl<CTX> HashStable<CTX> for f64 {
244 impl<T1: HashStable<CTX>, CTX> HashStable<CTX> for (T1,) {
251 impl<T1: HashStable<CTX>, T2: HashStable<CTX>, CTX> HashStable<CTX> for (T1, T2) {
289 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for [T] {
298 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for Vec<T> {
344 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for Box<T> {
351 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for ::std::rc::Rc<T> {
365 impl<CTX> HashStable<CTX> for str {
373 impl<CTX> HashStable<CTX> for String {
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/rustc-ap-rustc_data_structures/src/
H A Dstable_hasher.rs224 impl<CTX> HashStable<CTX> for f32 {
231 impl<CTX> HashStable<CTX> for f64 {
244 impl<T1: HashStable<CTX>, CTX> HashStable<CTX> for (T1,) {
251 impl<T1: HashStable<CTX>, T2: HashStable<CTX>, CTX> HashStable<CTX> for (T1, T2) {
289 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for [T] {
298 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for Vec<T> {
344 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for Box<T> {
351 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for ::std::rc::Rc<T> {
365 impl<CTX> HashStable<CTX> for str {
373 impl<CTX> HashStable<CTX> for String {
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/Common/
H A DOptions.cpp474 CTX::instance()->init(); in InitOptions()
2273 if(CTX::instance()->glSize[0] <= 0) CTX::instance()->glSize[0] = 600; in opt_general_graphics_size0()
2287 if(CTX::instance()->glSize[1] <= 0) CTX::instance()->glSize[1] = 600; in opt_general_graphics_size1()
2343 if(CTX::instance()->msgSize <= 0) CTX::instance()->msgSize = 100; in opt_general_message_size()
2386 if(CTX::instance()->menuSize[0] < 0) CTX::instance()->menuSize[0] = 0; in opt_general_menu_size0()
2400 if(CTX::instance()->menuSize[1] < 0) CTX::instance()->menuSize[1] = 300; in opt_general_menu_size1()
3085 if(CTX::instance()->axes < 0 || CTX::instance()->axes > 5) in opt_general_axes()
3371 if(CTX::instance()->vectorType < 1 || CTX::instance()->vectorType > 4) in opt_general_vector_type()
3417 if(CTX::instance()->colorScheme > 3) CTX::instance()->colorScheme = 0; in opt_general_color_scheme()
3460 if(CTX::instance()->bgGradient < 0 || CTX::instance()->bgGradient > 3) in opt_general_background_gradient()
[all …]
H A DCreateFile.cpp186 if(CTX::instance()->print.width > 0 || CTX::instance()->print.height > 0){ in GetCompositePixelBuffer()
323 CTX::instance()->mesh.binary, CTX::instance()->mesh.saveAll, in CreateOutputFile()
342 (name, CTX::instance()->mesh.binary, CTX::instance()->mesh.saveAll, in CreateOutputFile()
381 (name, CTX::instance()->mesh.binary, CTX::instance()->mesh.saveAll, in CreateOutputFile()
388 (name, CTX::instance()->mesh.binary, CTX::instance()->mesh.saveAll, in CreateOutputFile()
395 CTX::instance()->mesh.saveAll, CTX::instance()->mesh.scalingFactor); in CreateOutputFile()
411 CTX::instance()->mesh.saveAll, CTX::instance()->mesh.scalingFactor); in CreateOutputFile()
423 (name, CTX::instance()->mesh.binary, CTX::instance()->mesh.saveAll, in CreateOutputFile()
471 CTX::instance()->print.posSICN, CTX::instance()->print.posSIGE, in CreateOutputFile()
472 CTX::instance()->print.posGamma, CTX::instance()->print.posDisto, in CreateOutputFile()
[all …]
H A DGmshGlobal.cpp330 else if(CTX::instance()->batch > 0) { in GmshBatch()
332 if(CTX::instance()->batch < 4) in GmshBatch()
334 else if(CTX::instance()->batch == 4) in GmshBatch()
336 else if(CTX::instance()->batch == 5) in GmshBatch()
356 CTX::instance()->batch = 0; in GmshBatch()
367 if(CTX::instance()->batch > 0 || CTX::instance()->batchAfterMesh) { in GmshBatch()
399 CTX::instance()->files.empty()) { in GmshFLTK()
465 if(CTX::instance()->solver.listen) { in GmshFLTK()
485 CTX::instance()->terminal = 1; in GmshMainBatch()
494 CTX::instance()->noPopup = 1; in GmshMainBatch()
[all …]
/dports/mail/lmtp2nntp/lmtp2nntp-1.4.1/lib_l2/
H A Dl2_spec_parse.y98 CTX->ch = $1;
106 if ((CTX->rv = l2_channel_create(&ch, CTX->env, "null")) != L2_OK) {
107 l2_spec_error(CTX, CTX->rv, &yylloc, "failed to create channel 'null'");
118 l2_spec_error(CTX, CTX->rv, &yylloc, "unable to link parent with child");
139 l2_spec_error(CTX, CTX->rv, &yylloc, "unable to link childs together");
171 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
188 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
198 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
211 if ((CTX->rv = l2_channel_create(&ch, CTX->env, $1)) != L2_OK) {
222 CTX->chTmp = ch;
[all …]
/dports/devel/ossp-l2/l2-0.9.13/
H A Dl2_spec_parse.y98 CTX->ch = $1;
106 if ((CTX->rv = l2_channel_create(&ch, CTX->env, "null")) != L2_OK) {
107 l2_spec_error(CTX, CTX->rv, &yylloc, "failed to create channel 'null'");
118 l2_spec_error(CTX, CTX->rv, &yylloc, "unable to link parent with child");
139 l2_spec_error(CTX, CTX->rv, &yylloc, "unable to link childs together");
171 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
188 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
198 l2_spec_error(CTX, CTX->rv, &yylloc, "invalid level '%s'", $1);
211 if ((CTX->rv = l2_channel_create(&ch, CTX->env, $1)) != L2_OK) {
222 CTX->chTmp = ch;
[all …]
/dports/security/gost-engine/engine-7ed64cd/
H A Dgosthash2012.c52 memcpy(&buf, CTX->buffer, CTX->bufsize); in pad()
163 g(&(CTX->h), &(CTX->N), (const unsigned char *)&m); in stage2()
165 add512(&(CTX->N), &buffer512, &(CTX->N)); in stage2()
166 add512(&(CTX->Sigma), &m, &(CTX->Sigma)); in stage2()
174 memcpy(&buf, &(CTX->buffer), CTX->bufsize); in stage3()
184 pad(CTX); in stage3()
186 g(&(CTX->h), &(CTX->N), (const unsigned char *)&(CTX->buffer)); in stage3()
188 add512(&(CTX->N), &buf, &(CTX->N)); in stage3()
195 memcpy(&(CTX->hash), &(CTX->h), sizeof(uint512_u)); in stage3()
219 memcpy(&CTX->buffer[CTX->bufsize], data, chunksize); in gost2012_hash_block()
[all …]
/dports/devel/racer/racer-2.1.48/cargo-crates/rustc-ap-rustc_data_structures-718.0.0/src/
H A Dstable_hasher.rs224 impl<CTX> HashStable<CTX> for f32 {
231 impl<CTX> HashStable<CTX> for f64 {
244 impl<T1: HashStable<CTX>, CTX> HashStable<CTX> for (T1,) {
251 impl<T1: HashStable<CTX>, T2: HashStable<CTX>, CTX> HashStable<CTX> for (T1, T2) {
289 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for [T] {
298 impl<T: HashStable<CTX>, CTX> HashStable<CTX> for Vec<T> {
344 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for Box<T> {
351 impl<T: ?Sized + HashStable<CTX>, CTX> HashStable<CTX> for ::std::rc::Rc<T> {
365 impl<CTX> HashStable<CTX> for str {
373 impl<CTX> HashStable<CTX> for String {
[all …]
/dports/www/varnish6/varnish-cache-varnish-6.6.2/bin/varnishncsa/
H A Dvarnishncsa.c160 } CTX; variable
167 CTX.fo = fopen(CTX.w_arg, append ? "a" : "w"); in openout()
268 if (CTX.frag[F_tstart].gen == CTX.gen) { in v_matchproto_()
283 if (CTX.frag[F_tend].gen == CTX.gen) { in v_matchproto_()
322 AZ(vsb_fcat(CTX.vsb, &CTX.frag[F_m], "-")); in v_matchproto_()
324 if (CTX.frag[F_host].gen == CTX.gen) { in v_matchproto_()
330 AZ(vsb_fcat(CTX.vsb, &CTX.frag[F_U], "")); in v_matchproto_()
331 AZ(vsb_fcat(CTX.vsb, &CTX.frag[F_q], "")); in v_matchproto_()
343 if (CTX.frag[F_auth].gen != CTX.gen || in v_matchproto_()
375 i = fwrite(VSB_data(CTX.vsb), 1, VSB_len(CTX.vsb), CTX.fo); in print()
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/Fltk/
H A DclippingWindow.cpp49 CTX::instance()->geom.clip = 0; in clip_update_cb()
50 CTX::instance()->mesh.clip = 0; in clip_update_cb()
128 CTX::instance()->drawBBox = 1; in clip_update_cb()
130 CTX::instance()->post.draw = CTX::instance()->mesh.draw = 0; in clip_update_cb()
133 CTX::instance()->post.draw = CTX::instance()->mesh.draw = 1; in clip_update_cb()
338 (-CTX::instance()->clipPlane[0][3] + CTX::instance()->clipPlane[3][3]) / 2., in fillBoxValuesFromPlaneValues()
339 (-CTX::instance()->clipPlane[1][3] + CTX::instance()->clipPlane[4][3]) / 2., in fillBoxValuesFromPlaneValues()
340 (-CTX::instance()->clipPlane[2][3] + CTX::instance()->clipPlane[5][3]) / in fillBoxValuesFromPlaneValues()
343 CTX::instance()->clipPlane[0][3] + CTX::instance()->clipPlane[3][3], in fillBoxValuesFromPlaneValues()
344 CTX::instance()->clipPlane[1][3] + CTX::instance()->clipPlane[4][3], in fillBoxValuesFromPlaneValues()
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/Graphics/
H A DdrawMesh.cpp148 if(CTX::instance()->mesh.nodes) { in drawVerticesPerEntity()
422 if(CTX::instance()->mesh.nodes || CTX::instance()->mesh.nodeLabels) in operator ()()
455 if(CTX::instance()->mesh.lines) in operator ()()
460 if(CTX::instance()->mesh.nodes || CTX::instance()->mesh.nodeLabels) { in operator ()()
500 CTX::instance()->mesh.light && CTX::instance()->mesh.lightLines, in operator ()()
524 if(CTX::instance()->mesh.nodes || CTX::instance()->mesh.nodeLabels) { in operator ()()
542 if(CTX::instance()->mesh.dual) { in operator ()()
581 CTX::instance()->mesh.light && (CTX::instance()->mesh.lightLines > 1), in operator ()()
582 CTX::instance()->mesh.volumeFaces, CTX::instance()->color.mesh.line); in operator ()()
622 if(CTX::instance()->mesh.nodes || CTX::instance()->mesh.nodeLabels) { in operator ()()
[all …]
H A DdrawContext.cpp264 (CTX::instance()->mesh.surfaceEdges || CTX::instance()->geom.curves || in needPolygonOffset()
351 if(CTX::instance()->post.draw && !CTX::instance()->stereo) drawScales(); in draw2d()
558 double Wa = (CTX::instance()->max[1] - CTX::instance()->min[1]) / in initProjection()
559 (CTX::instance()->max[0] - CTX::instance()->min[0]); in initProjection()
565 vymin = 0.5 * (CTX::instance()->min[1] + CTX::instance()->max[1] - in initProjection()
567 vymax = 0.5 * (CTX::instance()->min[1] + CTX::instance()->max[1] + in initProjection()
571 vxmin = 0.5 * (CTX::instance()->min[0] + CTX::instance()->max[0] - in initProjection()
573 vxmax = 0.5 * (CTX::instance()->min[0] + CTX::instance()->max[0] + in initProjection()
605 if(zmax < CTX::instance()->lc) zmax = CTX::instance()->lc; in initProjection()
794 glTranslated(CTX::instance()->cg[0], CTX::instance()->cg[1], in initPosition()
[all …]
/dports/cad/gmsh/gmsh-4.9.2-source/Geo/
H A DGModelVertexArrays.cpp42 return CTX::instance()->color.fg; in getColorByEntity()
65 return CTX::instance() in getColorByElement()
78 return CTX::instance()->color.fg; in getColorByElement()
104 if(CTX::instance()->mesh.qualitySup) { in isElementVisible()
118 if(CTX::instance()->mesh.radiusSup) { in isElementVisible()
124 if(CTX::instance()->clipWholeElements) { in isElementVisible()
264 if(CTX::instance()->mesh.lines) { in _estimateNumLines()
279 if(CTX::instance()->mesh.lines) { in operator ()()
437 if(CTX::instance()->mesh.prisms) in operator ()()
439 if(CTX::instance()->mesh.pyramids) in operator ()()
[all …]
/dports/math/py-gmpy2/gmpy2-2.1.1/src/
H A Dgmpy2_mpc.h77 #define GMPY_MPC_CHECK_RANGE(V, CTX) \ argument
141 #define GMPY_MPC_EXCEPTIONS(V, CTX) \ argument
148 CTX->ctx.invalid = 1; \
152 CTX->ctx.inexact = 1; \
156 CTX->ctx.underflow = 1; \
160 CTX->ctx.overflow = 1; \
163 if (CTX->ctx.traps) { \
187 #define GMPY_MPC_CLEANUP(V, CTX) \ argument
188 GMPY_MPC_CHECK_RANGE(V, CTX); \
189 GMPY_MPC_SUBNORMALIZE(V, CTX); \
[all …]
/dports/math/py-gmpy2-devel/gmpy-gmpy2-2.1.0b5/src/
H A Dgmpy2_mpc.h79 #define GMPY_MPC_CHECK_RANGE(V, CTX) \ argument
143 #define GMPY_MPC_EXCEPTIONS(V, CTX) \ argument
150 CTX->ctx.invalid = 1; \
154 CTX->ctx.inexact = 1; \
158 CTX->ctx.underflow = 1; \
162 CTX->ctx.overflow = 1; \
165 if (CTX->ctx.traps) { \
189 #define GMPY_MPC_CLEANUP(V, CTX) \ argument
190 GMPY_MPC_CHECK_RANGE(V, CTX); \
191 GMPY_MPC_SUBNORMALIZE(V, CTX); \
[all …]

12345678910>>...85