Searched refs:Output (Results 1 - 25 of 73) sorted by relevance

123

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
H A DbgenObjectDefinition.py50 Output("typedef struct %s {", self.objecttype)
52 Output("PyObject_HEAD")
55 Output("} %s;", self.objecttype)
65 Output()
86 Output("%sPyTypeObject %s;", sf, self.typename)
87 Output()
88 Output("#define %s_Check(x) ((x)->ob_type == &%s || PyObject_TypeCheck((x), &%s))",
90 Output()
93 Output("%sPyMethodChain %s_chain = { %s_methods, %s };",
97 Output("
[all...]
H A DbgenModule.py31 Output("#include \"Python.h\"")
32 Output()
35 Output()
36 Output("%s", self.includestuff)
43 Output()
44 Output("%s", self.finalstuff)
46 Output()
47 Output("void init%s(void)", self.name)
49 Output("PyObject *m;")
50 Output("PyObjec
[all...]
H A DbgenGeneratorGroup.py20 Output()
21 Output("static PyMethodDef %s_methods[] = {", self.prefix)
25 Output("{NULL, NULL, 0}")
27 Output("};")
H A DbgenHeapBuffer.py29 Output("if ((%s__out__ = malloc(%s__in_len__)) == NULL)", name, name)
31 Output('PyErr_NoMemory();')
32 Output("goto %s__error__;", name)
35 Output("%s__len__ = %s__in_len__;", name, name)
45 Output("free(%s__out__);", name)
77 """Output buffer allocated on the heap -- passed as (buffer, size).
98 """Output buffer allocated on the heap -- passed as (buffer, &size).
110 """Output buffer allocated on the heap -- passed as (buffer, size, &size).
120 """Output buffer allocated by the called function -- passed as (&buffer, &size).
127 Output("
[all...]
H A DbgenOutput.py0 """Output primitives for the binding generator classes.
57 def Output(format = "", *args): function
97 """Combine Output() followed by IndentLevel().
105 """Combine Output() followed by DedentLevel().
113 """Like Output, but add a '{' and increase the indentation level.
127 Output("}")
130 """Output a header comment using a given dash character."""
132 Output()
133 Output("/* %s %s %s */", dash * (n/2), text, dash * (n - n/2))
134 Output()
[all...]
H A DbgenGenerator.py41 Output()
42 Output(self.condition)
47 Output("#endif")
50 Output()
51 Output("static PyObject *%s_%s(%s *_self, PyObject *_args)",
54 Output("PyObject *_res = NULL;")
57 Output("/* XXX To be provided */")
69 Output()
70 Output(self.condition)
71 Output("{\"
[all...]
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Cipher/
H A DCryptAes.c100 If Output is NULL, then return FALSE.
105 @param[out] Output Pointer to a buffer that receives the AES encryption output.
117 OUT UINT8 *Output
125 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output == NULL) {
135 AES_ecb_encrypt (Input, Output, AesKey, AES_ENCRYPT);
137 Output += AES_BLOCK_SIZE;
157 If Output is NULL, then return FALSE.
162 @param[out] Output Pointer to a buffer that receives the AES decryption output.
174 OUT UINT8 *Output
182 if (AesContext == NULL || Input == NULL || (InputSize % AES_BLOCK_SIZE) != 0 || Output
[all...]
H A DCryptTdes.c126 If Output is NULL, then return FALSE.
131 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
143 OUT UINT8 *Output
151 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output == NULL) {
160 (DES_cblock *) Output,
167 Output += TDES_BLOCK_SIZE;
187 If Output is NULL, then return FALSE.
192 @param[out] Output Pointer to a buffer that receives the TDES decryption output.
204 OUT UINT8 *Output
212 if (TdesContext == NULL || Input == NULL || (InputSize % TDES_BLOCK_SIZE) != 0 || Output
[all...]
H A DCryptArc4.c93 If Output is NULL, then return FALSE.
98 @param[out] Output Pointer to a buffer that receives the ARC4 encryption output.
110 OUT UINT8 *Output
118 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) {
124 RC4 (Rc4Key, (UINT32) InputSize, Input, Output);
139 If Output is NULL, then return FALSE.
144 @param[out] Output Pointer to a buffer that receives the ARC4 decryption output.
156 OUT UINT8 *Output
164 if (Arc4Context == NULL || Input == NULL || Output == NULL || InputSize > INT_MAX) {
170 RC4 (Rc4Key, (UINT32) InputSize, Input, Output);
[all...]
H A DCryptAesNull.c67 @param[out] Output Pointer to a buffer that receives the AES encryption output.
78 OUT UINT8 *Output
93 @param[out] Output Pointer to a buffer that receives the AES decryption output.
104 OUT UINT8 *Output
120 @param[out] Output Pointer to a buffer that receives the AES encryption output.
132 OUT UINT8 *Output
148 @param[out] Output Pointer to a buffer that receives the AES encryption output.
160 OUT UINT8 *Output
H A DCryptTdesNull.c67 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
78 OUT UINT8 *Output
93 @param[out] Output Pointer to a buffer that receives the TDES decryption output.
104 OUT UINT8 *Output
120 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
132 OUT UINT8 *Output
148 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
160 OUT UINT8 *Output
H A DCryptArc4Null.c68 @param[out] Output Pointer to a buffer that receives the ARC4 encryption output.
79 OUT UINT8 *Output
94 @param[out] Output Pointer to a buffer that receives the ARC4 decryption output.
105 OUT UINT8 *Output
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Rand/
H A DCryptRand.c79 If Output is NULL, then return FALSE.
81 @param[out] Output Pointer to buffer to receive random value.
91 OUT UINT8 *Output,
98 if (Output == NULL || Size > INT_MAX) {
105 if (RAND_bytes (Output, (UINT32) Size) != 1) {
90 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
H A DCryptRandItc.c87 If Output is NULL, then return FALSE.
89 @param[out] Output Pointer to buffer to receive random value.
99 OUT UINT8 *Output,
106 if (Output == NULL || Size > INT_MAX) {
113 if (RAND_bytes (Output, (UINT32) Size) != 1) {
98 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
H A DCryptRandTsc.c87 If Output is NULL, then return FALSE.
89 @param[out] Output Pointer to buffer to receive random value.
99 OUT UINT8 *Output,
106 if (Output == NULL || Size > INT_MAX) {
113 if (RAND_bytes (Output, (UINT32) Size) != 1) {
98 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
H A DCryptRandNull.c48 @param[out] Output Pointer to buffer to receive random value.
57 OUT UINT8 *Output,
56 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Cipher/
H A DCryptAesNull.c67 @param[out] Output Pointer to a buffer that receives the AES encryption output.
78 OUT UINT8 *Output
93 @param[out] Output Pointer to a buffer that receives the AES decryption output.
104 OUT UINT8 *Output
120 @param[out] Output Pointer to a buffer that receives the AES encryption output.
132 OUT UINT8 *Output
148 @param[out] Output Pointer to a buffer that receives the AES encryption output.
160 OUT UINT8 *Output
H A DCryptTdesNull.c67 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
78 OUT UINT8 *Output
93 @param[out] Output Pointer to a buffer that receives the TDES decryption output.
104 OUT UINT8 *Output
120 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
132 OUT UINT8 *Output
148 @param[out] Output Pointer to a buffer that receives the TDES encryption output.
160 OUT UINT8 *Output
H A DCryptArc4Null.c68 @param[out] Output Pointer to a buffer that receives the ARC4 encryption output.
79 OUT UINT8 *Output
94 @param[out] Output Pointer to a buffer that receives the ARC4 decryption output.
105 OUT UINT8 *Output
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Rand/
H A DCryptRandNull.c48 @param[out] Output Pointer to buffer to receive random value.
57 OUT UINT8 *Output,
56 RandomBytes( OUT UINT8 *Output, IN UINTN Size ) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/OrderedCollectionTest/
H A DOrderedCollectionTest.c47 static FILE *Input, *Output; variable
156 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
189 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
214 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
236 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
261 fprintf (Output, "%s: %d: calloc(): out of memory\n", __FUNCTION__, Value);
270 fprintf (Output, "%s: %d: OrderedCollectionInsert(): out of memory\n",
278 fprintf (Output, "%s: %d: already exists\n", __FUNCTION__,
288 fprintf (Output, "%s: %d: inserted\n", __FUNCTION__, Value);
318 fprintf (Output, "
[all...]
/device/google/contexthub/util/nanotool/
H A Dlog.h44 virtual void Output(const char *str) = 0;
45 virtual void Output(const char *format, va_list arg_list) = 0;
92 void Output(const char *str);
93 void Output(const char *format, va_list arg_list);
H A Dlog.cpp135 Log::logger_->Output(prefix);
136 Log::logger_->Output(format, arg_list);
137 Log::logger_->Output("\n");
140 void PrintfLogger::Output(const char *str) { function in class:android::PrintfLogger
144 void PrintfLogger::Output(const char *format, va_list arg_list) { function in class:android::PrintfLogger
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
H A DGenFdsGlobalVariable.py271 # @param OutputDir Output directory
337 # @param Output Path of output file
340 # @retval True if Output doesn't exist, or any Input is newer
341 # @retval False if all Input is older than Output
344 def NeedsUpdate(Output, Input):
345 if not os.path.exists(Output):
347 # always update "Output" if no "Input" given
351 # if fdf file is changed after the 'Output" is generated, update the 'Output'
352 OutputTime = os.path.getmtime(Output)
[all...]
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
H A DIpSecDriver.c238 if (UdpSrv->Output != NULL && ControllerHandle == UdpSrv->Output->UdpHandle) {
239 UdpIoFreeIo (UdpSrv->Output);
240 UdpSrv->Output = NULL;
243 if (UdpSrv->Input == NULL && UdpSrv->Output == NULL) {
265 if (UdpSrv->Output != NULL && ControllerHandle == UdpSrv->Output->UdpHandle) {
266 UdpIoFreeIo (UdpSrv->Output);
267 UdpSrv->Output = NULL;
270 if (UdpSrv->Input == NULL && UdpSrv->Output
[all...]

Completed in 352 milliseconds

123