| /minix3/crypto/external/bsd/openssl/dist/doc/crypto/ |
| H A D | BIO_s_mem.pod | 6 BIO_get_mem_ptr, BIO_new_mem_buf - memory BIO 23 BIO_s_mem() return the memory BIO method function. 25 A memory BIO is a source/sink BIO which uses memory for its I/O. Data 26 written to a memory BIO is stored in a BUF_MEM structure which is extended 29 Any data written to a memory BIO can be recalled by reading from it. 30 Unless the memory BIO is read only any data read from it is deleted from 35 If the BIO_CLOSE flag is set when a memory BIO is freed then the underlying 38 Calling BIO_reset() on a read write memory BIO clears any data in it. On a 46 BIO_set_mem_eof_return() sets the behaviour of memory BIO B<b> when it is 47 empty. If the B<v> is zero then an empty memory BIO will return EOF (that is [all …]
|
| H A D | buffer.pod | 23 various purposes in the library, most notably memory BIOs. 35 memory allocated to the buffer. There are three functions which handle these 48 memory and returns a pointer to the allocated block. 51 be used for memory leak checking or replacing the malloc() function. 53 The memory allocated from BUF_strdup() should be freed up using the OPENSSL_free()
|
| /minix3/external/bsd/kyua-cli/dist/utils/ |
| H A D | memory_test.cpp | 47 const units::bytes memory = utils::physical_memory(); in ATF_TEST_CASE_BODY() local 50 ATF_REQUIRE(memory == 0); in ATF_TEST_CASE_BODY() 52 ATF_REQUIRE(memory > 0); in ATF_TEST_CASE_BODY() 53 ATF_REQUIRE(memory < 100 * units::TB); // Large enough for now... in ATF_TEST_CASE_BODY()
|
| /minix3/bin/sh/ |
| H A D | redir.c | 113 char memory[10]; /* file descriptors to write to memory */ in redirect() local 116 memory[i] = 0; in redirect() 117 memory[1] = flags & REDIR_BACKQ; in redirect() 155 openredirect(n, memory, flags); in redirect() 157 if (memory[1]) in redirect() 159 if (memory[2]) in redirect() 165 openredirect(union node *redir, char memory[10], int flags) in openredirect() 179 memory[fd] = 0; in openredirect() 230 if (memory[redir->ndup.dupfd]) in openredirect() 231 memory[fd] = 1; in openredirect()
|
| /minix3/external/bsd/llvm/dist/llvm/test/Analysis/TypeBasedAliasAnalysis/ |
| H A D | functionattrs.ll | 6 ; says is to constant memory. 8 ; It's unusual to see a store to constant memory, but it isn't necessarily 25 ; TBAA says doesn't modify any memory. 40 ; that the function accesses memory through its arguments, which TBAA 41 ; still says that the function doesn't write to memory. 58 ; Similar to the others, va_arg only accesses memory through its operand. 82 ; Invariant memory. 84 ; Not invariant memory.
|
| H A D | aliastest.ll | 25 ; Test that basic invariant-memory queries work. 59 ; Invariant memory. 61 ; Not invariant memory.
|
| /minix3/external/bsd/top/dist/machine/ |
| H A D | m_sunos4.man | 9 to. Information about physical memory is displayed on the memory 10 status line, but information about virtual memory is not available. 19 than total virtual memory size (SIZE column). This seems odd at first, 20 but is a consequence of shared libraries: shared memory is counted as
|
| H A D | m_sunos5.man | 31 Number of kilobytes paged in to physical memory. 34 Number of kilobytes paged out from physical memory. 36 The memory summary line displays the following: 39 Total amount of physical memory that can be allocated for use by processes 40 (it does not include memory reserved for the kernel's use). 43 The amount of unallocated physical memory. 55 since the latter includes physical memory as well. 94 Support for multi-cpu, calculation of CPU% and memory stats provided by
|
| /minix3/external/bsd/llvm/dist/clang/docs/ |
| H A D | MemorySanitizer.rst | 25 Simply compile and link your program with ``-fsanitize=memory`` flag. 49 % clang -fsanitize=memory -fno-omit-frame-pointer -g -O2 umr.cc 99 warnings will be suppressed and all values loaded from memory will be 114 ``-fsanitize-memory-track-origins`` Clang option. With the code from 119 % clang -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer -g -O2 umr.cc 134 ``-fsanitize-memory-track-origins=2`` flag. In this mode reports 152 … % clang -fsanitize=memory -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer -g -O2 umr2.cc 158 Uninitialized value was stored to memory at 186 marks memory from instrumented libraries as fully initialized. See 187 `http://code.google.com/p/memory-sanitizer/wiki/Running#Running_with_the_dynamic_tool` [all …]
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/X86/ |
| H A D | asm-block-labels.ll | 13 call void asm sideeffect "int $$1", "~{dirflag},~{fpsr},~{flags},~{memory}"( ) 16 …call void asm sideeffect "brl ${0:l}", "X,~{dirflag},~{fpsr},~{flags},~{memory}"( label %"LASM$foo… 27 …call void asm sideeffect "brl ${0:l}", "X,~{dirflag},~{fpsr},~{flags},~{memory}"( label %"LASM$foo… 30 call void asm sideeffect "int $$1", "~{dirflag},~{fpsr},~{flags},~{memory}"( ) 36 call void asm sideeffect "int $$1", "~{dirflag},~{fpsr},~{flags},~{memory}"( )
|
| H A D | 2008-04-08-CoalescerCrash.ll | 8 …sm sideeffect "movd $1, $0", "=={mm4},{bp},~{dirflag},~{fpsr},~{flags},~{memory}"( i32 undef ) nou… 11 …sm sideeffect "movd $1, $0", "=={bp},{mm3},~{dirflag},~{fpsr},~{flags},~{memory}"( x86_mmx undef )… 14 …ct "movntq $0, 0($1,$2)", "{mm0},{di},{bp},~{dirflag},~{fpsr},~{flags},~{memory}"( x86_mmx undef, … 17 …sm sideeffect "movd $1, $0", "=={bp},{mm4},~{dirflag},~{fpsr},~{flags},~{memory}"( x86_mmx %tmp1 )…
|
| /minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/ |
| H A D | Endian.h | 49 inline value_type read(const void *memory) { in read() argument 53 LLVM_ASSUME_ALIGNED(memory, in read() 62 inline value_type readNext(const unsigned char *&memory) { in readNext() argument 63 value_type ret = read<value_type, endian, alignment>(memory); in readNext() 64 memory += sizeof(value_type); in readNext() 72 inline void write(void *memory, value_type value) { in write() argument 74 memcpy(LLVM_ASSUME_ALIGNED(memory, in write()
|
| /minix3/external/public-domain/xz/dist/m4/ |
| H A D | tuklib_physmem.m4 | 8 # Check how to get the amount of physical memory. 46 AC_CACHE_CHECK([how to detect the amount of physical memory], 177 [Define to 1 if the amount of physical memory 182 [Define to 1 if the amount of physical memory can 188 [Define to 1 if the amount of physical memory can 193 [Define to 1 if the amount of physical memory can 198 [Define to 1 if the amount of physical memory can 203 [Define to 1 if the amount of physical memory 208 [Define to 1 if the amount of physical memory
|
| /minix3/minix/drivers/storage/memory/ |
| H A D | Makefile | 6 PROG= memory 7 SRCS= memory.c imgrd.mfs 15 CPPFLAGS.memory.c+= -I${NETBSDSRCDIR}/minix
|
| /minix3/external/bsd/llvm/dist/clang/test/Analysis/ |
| H A D | NewDelete-intersections.mm | 45 // expected-warning@-2 {{Potential leak of memory pointed to by 'p'}} 53 // expected-warning@-2 {{Potential leak of memory pointed to by 'p'}} 60 // expected-warning@-2 {{Potential leak of memory pointed to by 'p'}} 67 free(p); // expected-warning{{Use of memory after it is freed}} 73 p = new(p) int; // expected-warning{{Use of memory after it is freed}}
|
| /minix3/external/bsd/llvm/dist/llvm/docs/ |
| H A D | MCJITDesignAndImplementation.rst | 22 function. If the client does not explicitly create a memory manager at 23 this time, a default memory manager (specifically SectionMemoryManager) 35 passing in its pointers to the module, memory manager and target machine 73 image must be loaded into suitable memory, relocations must be applied and 74 memory permission and code cache invalidation (if required) must be completed. 97 each function or data symbol, the associated section is loaded into memory 111 sections for the object will have been loaded into memory allocated by the 112 memory manager and relocation information will have been prepared, but the 132 This should happen before the section memory is copied to its new 150 External symbols are resolved by calling the memory manager's [all …]
|
| H A D | AliasAnalysis.rst | 13 memory. There are many different algorithms for alias analysis and many 46 The ``AliasAnalysis`` interface exposes information about memory, represented in 47 several different ways. In particular, memory objects are represented as a 61 used to query whether or not two memory objects alias, whether function calls 62 can modify or read a memory object, etc. For all of these queries, memory 66 Representing memory objects as a starting address and a size is critically 109 two memory objects alias each other. It takes two memory objects as input and 122 between any memory reference *based* on one pointer and any memory reference 124 non-overlapping memory ranges. Another is when the two pointers are only ever 125 used for reading memory. Another is when the memory is freed and reallocated [all …]
|
| /minix3/external/bsd/kyua-cli/dist/cli/ |
| H A D | cmd_db_exec_test.cpp | 139 const char* memory = "BLOB contents"; in ATF_TEST_CASE_BODY() local 143 insert.bind(":v2", sqlite::blob(memory, std::strlen(memory))); in ATF_TEST_CASE_BODY() 149 (F("A string,BLOB of %s bytes") % std::strlen(memory)).str(), in ATF_TEST_CASE_BODY()
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/R600/ |
| H A D | lds-output-queue.ll | 30 ; value from global memory. A global value is a value that is declared 37 ; the input queue into main memory. These two instructions don't have to be 40 ; load from global memory which immediately follows a load from a global value that 41 ; has been declared in the local memory space: 64 ; The lack of proper aliasing results in the local memory read (LDS_READ_RET) 65 ; to consider the global memory read (VTX_READ_32) has a chain dependency, so 66 ; the global memory read will always be scheduled first. This will give us a
|
| /minix3/minix/drivers/storage/mmc/ |
| H A D | README.txt | 39 The MMC driver uses memory mapped IO to perform it's operations. On i386 it is 40 the pci driver that will grant access to certain piece of memory to a driver. 43 memory but this is unwanted behavior. We currently as thinking about two 44 possible solutions. The first would be to add the memory ranges in system.conf. 45 The second would be to modify the PCI driver to grant access to memory based on
|
| /minix3/external/bsd/llvm/dist/llvm/autoconf/m4/ |
| H A D | need_dev_zero_for_mmap.m4 | 2 # When allocating RWX memory, check whether we need to use /dev/zero 16 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
|
| /minix3/external/bsd/llvm/dist/llvm/test/CodeGen/Mips/ |
| H A D | inlineasmmemop.ll | 3 ; Simple memory 27 ; "D": Second word of a double word. This works for any memory element 33 ; No "D": First word of a double word. This works for any memory element
|
| /minix3/external/bsd/llvm/dist/clang/test/ARCMT/ |
| H A D | GC-check-warn-nsalloc.m | 1 …n10 -fobjc-gc-only %s 2>&1 | grep 'warning: \[rewriter\] call returns pointer to GC managed memory' 2 …y -x objective-c++ %s 2>&1 | grep 'warning: \[rewriter\] call returns pointer to GC managed memory'
|
| /minix3/external/bsd/file/dist/magic/magdir/ |
| H A D | smalltalk | 15 #>>20 lelong x , memory: %ld 23 #>>20 belong x , memory: %ld
|
| /minix3/crypto/external/bsd/netpgp/dist/doc/ |
| H A D | spec.txt | 5 - Load a key ring into memory. 14 - Add an ascii armoured key to a key ring held in memory. 15 - Store a key ring held in memory back to disk.
|