Searched refs:modes (Results 1 - 25 of 57) sorted by relevance

123

/barrelfish-master/lib/openssl-1.0.0d/crypto/aes/
H A Daes_cbc.c53 #include <openssl/modes.h>
H A Daes_ctr.c53 #include <openssl/modes.h>
H A Daes_ofb.c53 #include <openssl/modes.h>
H A Daes_cfb.c53 #include <openssl/modes.h>
H A DMakefile103 aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
105 aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
109 aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
123 aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h
/barrelfish-master/lib/openssl-1.0.0d/crypto/camellia/
H A Dcmll_cbc.c53 #include <openssl/modes.h>
H A Dcmll_ctr.c53 #include <openssl/modes.h>
H A Dcmll_ofb.c109 #include <openssl/modes.h>
H A Dcmll_cfb.c109 #include <openssl/modes.h>
H A DMakefile91 cmll_cbc.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
93 cmll_cfb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
95 cmll_ctr.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
102 cmll_ofb.o: ../../include/openssl/camellia.h ../../include/openssl/modes.h
/barrelfish-master/lib/openssl-1.0.0d/crypto/seed/
H A Dseed_cfb.c109 #include <openssl/modes.h>
H A Dseed_ofb.c109 #include <openssl/modes.h>
H A Dseed_cbc.c53 #include <openssl/modes.h>
H A DMakefile84 seed_cbc.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
90 seed_cfb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
102 seed_ofb.o: ../../include/openssl/modes.h ../../include/openssl/opensslconf.h
/barrelfish-master/lib/openssl-1.0.0d/crypto/modes/
H A DMakefile2 # OpenSSL/crypto/modes/Makefile
5 DIR= modes
26 EXHEADER= modes.h
78 cbc128.o: cbc128.c modes.h
79 cfb128.o: cfb128.c modes.h
80 ctr128.o: ctr128.c modes.h
81 cts128.o: cts128.c modes.h
82 ofb128.o: modes.h ofb128.c
/barrelfish-master/usr/drivers/vbe/
H A Dvbe.c33 /// Maximum number of video modes supported
39 /// Array of all supported video modes for this adapter
40 static uint16_t modes[MAX_MODES]; variable
127 return modes;
279 // make a local copy of video modes (256 modes should be enough)
280 memcpy(modes, myram + far_to_linear(ib.videomodeptr), 256 * 2);
283 // Print supported VESA modes
284 for(int i = 0; modes[i] != 0xffff; i++) {
287 if(vbe_mode_info(modes[
[all...]
H A Dmain.c35 static struct mode modes[MAX_MODES]; variable in typeref:struct:mode
68 if (xres == modes[i].xres && yres == modes[i].yres
69 && bpp == modes[i].bpp) {
70 uint32_t r = vbe_setmode(modes[i].mode, true, false);
160 struct mode *m = &modes[nmodes++];
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dopenssl.c154 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */ local
173 if (modes[type])
181 modes[type] = rw;
185 if (!modes[type])
191 if (modes[type] != rw)
198 modes[type] = 0;
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dmodes.pl26 % Version: $Id: modes.pl,v 1.4 2013/02/09 20:27:57 jschimpf Exp $
30 % IDENTIFICATION: modes.pl
47 :- module(modes).
58 performs an analysis of the modes that the predicates in the program
62 :- lib(modes).
108 :- meta_attribute(modes, [ copy_term:copy_mode_attr/2 ]).
284 % and we use the worst case exit modes (by unifying every argument with ?).
405 replace_attribute(X, P, modes)
513 replace_attribute(Y, Za, modes)
609 % least upper bound of 2 modes (c
[all...]
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssltest.c367 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */ local
386 if (modes[type])
394 modes[type] = rw;
398 if (!modes[type])
404 if (modes[type] != rw)
411 modes[type] = 0;
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Dssltest.c367 static int modes[CRYPTO_NUM_LOCKS]; /* = {0, 0, ... } */ local
386 if (modes[type])
394 modes[type] = rw;
398 if (!modes[type])
404 if (modes[type] != rw)
411 modes[type] = 0;
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Dinstall.com74 $ EXHEADER_MODES := modes.h
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dcalculator.tcl51 modes {Scientific Logical Financial}
154 if {![regexp -nocase ^([join $data(modes) |])\$ $val]} {
156 must be one of: [join $data(modes) {, }]"
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dbip_io.c247 static dident modes[SMODEBITS + 1]; variable
352 modes[SCLOSED] = in_dict("closed",0);
353 modes[SREAD] = d_.read;
354 modes[SWRITE] = d_.write;
355 modes[SRDWR] = d_.update;
356 modes[SAPPEND|SCLOSED] = in_dict("invalid",0);
357 modes[SAPPEND|SREAD] = in_dict("invalid",0);
358 modes[SAPPEND|SWRITE] = d_.append;
359 modes[SAPPEND|SRDWR] = in_dict("invalid",0);
1570 result.val.did = modes[StreamMod
[all...]
/barrelfish-master/usr/eclipseclp/documents/userman/
H A Dumsdeveltools.tex68 \item[Mode Analyser] Collects statistics about the invocation modes of
684 invocation modes of the defined predicates:
747 are merely suggestions for the invocation modes of a predicate based on
748 runtime information. If there are potential predicate invocation modes
753 In summary, the programmer must verify that the suggested modes are correct

Completed in 137 milliseconds

123