Searched refs:blocks (Results 1 - 25 of 201) sorted by relevance

123456789

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dtext_write.tcl33 # the default field separator, and flush the named blocks)
38 variable blocks
39 array unset blocks *
139 variable blocks
140 set blocks($name) $currentblock
147 variable blocks
148 lappend currentblock {*}$blocks($name)
154 variable blocks
155 unset blocks($name)
161 variable blocks
[all...]
/macosx-10.9.5/libclosure-63/Examples/ArrayBlocksAPI/
H A DArrayApplyBlock.m10 #error compiler does not support blocks.
/macosx-10.9.5/libclosure-63/Examples/ArraySortExample/
H A DSort.m10 #error compiler does not support blocks.
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DHandleStack.cpp45 const Vector<HandleSlot>& blocks = m_blockStack.blocks(); local
48 int end = blocks.size() - 1;
50 HandleSlot block = blocks[i];
53 HandleSlot block = blocks[end];
H A DHandleStack.h83 const Vector<HandleSlot>& blocks = m_blockStack.blocks();
86 int i = blocks.size() - 1;
87 for ( ; blocks[i] + m_blockStack.blockLength != lastFrame.m_end; --i) {
89 blocks[i][j] = JSValue();
92 for (HandleSlot it = blocks[i] + m_blockStack.blockLength - 1; it != lastFrame.m_next - 1; --it)
/macosx-10.9.5/BootCache-106/
H A Dconvert_playlist_to_logical_playlist.sh20 blocks=$(mktemp /tmp/blocks.XXXXXX)
24 echo -n "Getting blocks from $in ..."
26 awk '{for (i = 0;i < $3; i += 4096) {print ($2+i)/512}}' > $blocks
30 sudo fsck_hfs -B $blocks -f $dev > $files
45 rm $blocks
/macosx-10.9.5/gpt-12/
H A Dcreate.c58 off_t blocks, last; local
116 blocks = map_free(1LL, 0LL);
117 if (blocks == 0LL) {
123 if ((uint64_t)(blocks - 1) * secsz > parts * sizeof(struct gpt_ent)) {
124 blocks = (parts * sizeof(struct gpt_ent)) / secsz;
126 blocks++;
127 blocks++; /* Don't forget the header itself */
131 if ((blocks + 1LL) > ((last + 1LL) >> 1))
132 blocks = ((last + 1LL) >> 1) - 1LL;
144 if (map->map_size < blocks)
[all...]
H A Dmigrate.c150 off_t blocks, last; local
177 blocks = map_free(1LL, 0LL);
178 if (blocks == 0LL) {
184 if ((uint64_t)(blocks - 1) * secsz > parts * sizeof(struct gpt_ent)) {
185 blocks = (parts * sizeof(struct gpt_ent)) / secsz;
187 blocks++;
188 blocks++; /* Don't forget the header itself */
192 if ((blocks + 1LL) > ((last + 1LL) >> 1))
193 blocks = ((last + 1LL) >> 1) - 1LL;
205 if (map->map_size < blocks)
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr-util/buckets/
H A Dapr_buckets_alloc.c41 apr_memnode_t *blocks; member in struct:apr_bucket_alloc_t
48 apr_allocator_free(list->allocator, list->blocks);
103 list->blocks = block;
115 apr_allocator_free(list->allocator, list->blocks);
128 apr_memnode_t *active = list->blocks;
140 list->blocks = apr_allocator_alloc(list->allocator, ALLOC_AMT);
141 if (!list->blocks) {
142 list->blocks = active;
145 list->blocks->next = active;
146 active = list->blocks;
[all...]
/macosx-10.9.5/apr-30/apr-util/apr-util/buckets/
H A Dapr_buckets_alloc.c41 apr_memnode_t *blocks; member in struct:apr_bucket_alloc_t
48 apr_allocator_free(list->allocator, list->blocks);
95 list->blocks = block;
107 apr_allocator_free(list->allocator, list->blocks);
120 apr_memnode_t *active = list->blocks;
132 list->blocks = apr_allocator_alloc(list->allocator, ALLOC_AMT);
133 if (!list->blocks) {
136 list->blocks->next = active;
137 active = list->blocks;
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DSDevice.c96 unsigned long blocks = 0;
122 blocks = formatListRecords[formatListRecIndex].volSize;
125 if ( blocks == 0 )
141 blocks = kSingleSidedSize;
145 blocks = kDoubleSidedSize;
164 blocks = driveQElementPtr->dQDrvSz;
168 blocks = ((unsigned long)driveQElementPtr->dQDrvSz2 << 16) +
178 *numBlocks = blocks;
/macosx-10.9.5/CPANInternal-140/Filesys-Df/
H A DDf.pm31 my ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail);
35 ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail) = _df_fh(fileno($dir));
39 ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail) = _df($dir);
44 if($frsize == 0 || $blocks == 0) {
51 $blocks /= $result;
64 $blocks *= $result;
72 $used = $blocks - $bfree;
77 $user_blocks = $blocks - ($bfree - $bavail);
103 $per = $used / $blocks;
104 $user_blocks = $blocks;
[all...]
/macosx-10.9.5/CPANInternal-140/Filesys-Df-0.92/
H A DDf.pm31 my ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail);
35 ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail) = _df_fh(fileno($dir));
39 ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail) = _df($dir);
44 if($frsize == 0 || $blocks == 0) {
51 $blocks /= $result;
64 $blocks *= $result;
72 $used = $blocks - $bfree;
77 $user_blocks = $blocks - ($bfree - $bavail);
103 $per = $used / $blocks;
104 $user_blocks = $blocks;
[all...]
/macosx-10.9.5/Libc-997.90.3/regex/TRE/lib/
H A Dtre-mem.c10 This memory allocator is for allocating small memory blocks efficiently
11 in terms of memory overhead and execution speed. The allocated blocks
49 tre_list_t *tmp, *l = mem->blocks;
132 if (mem->blocks == NULL)
133 mem->blocks = l;
H A Dtre-mem.h22 tre_list_t *blocks; member in struct:tre_mem_struct
/macosx-10.9.5/emacs-92/emacs/src/
H A Dgmalloc.c141 /* The allocator divides the heap into blocks of fixed size; large
142 requests receive one or more whole blocks, and small requests
155 /* Number of contiguous free blocks allowed to build up at the end of
176 of blocks in the object. In the other blocks, this has a
185 __malloc_size_t size; /* Size (in blocks) of a free cluster. */
217 /* List of blocks allocated with `memalign' (or `valloc'). */
265 /* Number of extra blocks to get each time we ask for more core.
538 __malloc_size_t block, blocks; local
541 blocks
739 __malloc_size_t block, blocks, lastblocks, start; local
1033 __malloc_size_t block, blocks; local
1424 __malloc_size_t block, blocks, oldlimit; local
[all...]
/macosx-10.9.5/CPANInternal-140/Class-Trigger-0.14/inc/Test/
H A DBase.pm28 blocks next_block first_block
143 sub blocks() { subroutine
146 croak "Invalid arguments passed to 'blocks'"
148 croak sprintf("'%s' is invalid argument to blocks()", shift(@_))
151 my $blocks = $self->block_list;
154 my @blocks = $section_name
155 ? (grep { exists $_->{$section_name} } @$blocks)
156 : (@$blocks);
158 return scalar(@blocks) unless wantarray;
160 return (@blocks) i
[all...]
/macosx-10.9.5/uucp-11/uucp/unix/
H A Dfsusg.c93 static long adjust_blocks P((long blocks, int fromsize, int tosize));
95 /* Return the number of TOSIZE-byte blocks used by
96 BLOCKS FROMSIZE-byte blocks, rounding away from zero.
100 adjust_blocks (blocks, fromsize, tosize)
101 long blocks;
110 return blocks;
112 return blocks * (fromsize / tosize);
114 return (blocks + (blocks < 0 ? -1 : 1)) / (tosize / fromsize);
177 systems seem to always be in terms of 512-byte blocks,
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/misc/
H A Dstack.c55 stack->blocks = b;
75 b = stack->blocks;
92 stack->position.block = stack->blocks;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/include/
H A Dstack.h51 struct stackblock* blocks; /* stack table blocks */ member in struct:stacktable
/macosx-10.9.5/vim-53/runtime/indent/
H A Dmma.vim26 setlocal nosi "turn off smart indent so we don't over analyze } blocks
47 " doesn't do multiple parens/blocks/etc...
62 " same for ( blocks
67 " and finally, close { blocks if si ain't already set
/macosx-10.9.5/gnutar-452/gnutar/src/
H A Ddelete.c125 write_recent_blocks (union block *h, size_t blocks) argument
128 for (i = 0; i < blocks; i++)
139 size_t blocks = bytes / BLOCKSIZE; local
140 size_t rest = bytes - blocks * BLOCKSIZE;
142 write_recent_blocks ((union block *)data, blocks);
143 memcpy (new_record[new_blocks].buffer, data + blocks * BLOCKSIZE, rest);
240 /* Save away blocks before this one in this record. */
/macosx-10.9.5/ruby-104/ruby/tool/
H A Denc-unicode.rb209 blocks = []
216 blocks << constname
220 # All code points not belonging to any of the named blocks
222 no_block = (0..0x10ffff).to_a - data.values_at(*blocks).flatten
225 blocks << constname
298 blocks = parse_block(data)
308 blocks.each{|name|puts" CR_#{name},"}
349 blocks.each do |name|
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dcipher-aes.c77 int i, j, blocks = len / RIJNDAEL_BLOCKSIZE; local
91 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,
104 for (i = blocks; i > 0; i--, cnow-=RIJNDAEL_BLOCKSIZE,
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DckSHA1.c96 * For storing partial blocks
150 unsigned blocks; local
178 * Now the bulk of the data, in a multiple of full blocks
180 blocks = dataLen / SHS_BLOCKSIZE;
181 toMove = blocks * SHS_BLOCKSIZE;

Completed in 422 milliseconds

123456789