Searched refs:space (Results 276 - 300 of 569) sorted by relevance

<<11121314151617181920>>

/external/iputils/
H A Dping6.c820 int space; local
826 space = inet6_rth_space(IPV6_RTHDR_TYPE_0, argc - 1);
828 space = inet6_srcrt_space(IPV6_SRCRT_TYPE_0, argc - 1);
830 if (space == 0) {
835 if (cmsglen + CMSG_SPACE(space) > sizeof(cmsgbuf)) {
840 if (space + cmsglen > sizeof(cmsgbuf)) {
848 srcrt->cmsg_len = CMSG_LEN(space);
851 inet6_rth_init(CMSG_DATA(srcrt), space, IPV6_RTHDR_TYPE_0, argc - 1); local
852 cmsglen += CMSG_SPACE(space);
854 cmsglen += CMSG_ALIGN(space);
[all...]
/external/grub/docs/
H A Dtexinfo.tex113 \def\linenumber{l.\the\inputlineno:\space}
185 stand-alone strong-est time-stamp time-stamps which-ever white-space
223 % This is the space between the bar and the text.
257 % we did was a \nobreak, we don't want to insert more space.
335 % Only leave this space if the footline is nonempty.
378 % offset so that the space between them is truly \outerhsize or \outervsize
413 % Each occurence of `\^^M' or `<space>\^^M' is replaced by a single space.
415 % \argremovec might leave us with trailing space, e.g.,
417 % This space toke
[all...]
/external/valgrind/main/helgrind/
H A Dhg_main.c388 static void space ( Int n ) function
404 space(d+0); VG_(printf)("Thread %p {\n", t);
406 space(d+3); VG_(printf)("admin %p\n", t->admin);
407 space(d+3); VG_(printf)("magic 0x%x\n", (UInt)t->magic);
409 space(d+3); VG_(printf)("locksetA %d\n", (Int)t->locksetA);
410 space(d+3); VG_(printf)("locksetW %d\n", (Int)t->locksetW);
411 space(d+0); VG_(printf)("}\n");
421 space(d); VG_(printf)("admin_threads (%d records) {\n", n);
424 space(n);
429 space(
[all...]
/external/chromium_org/v8/src/
H A Dlog.h281 void HeapSampleBeginEvent(const char* space, const char* kind);
282 void HeapSampleEndEvent(const char* space, const char* kind);
290 void HeapSampleStats(const char* space, const char* kind,
H A Dstring-stream.h190 int space() const { return capacity_ - length_; } function in class:v8::internal::StringStream
/external/libffi/src/x86/
H A Dwin32.S65 # Remove the space we pushed for the args
76 # Even if there is no space for the return value, we are
187 # Even if there is no space for the return value, we are
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dinspector.css52 white-space: nowrap !important;
530 white-space: nowrap;
1000 white-space: pre-wrap;
1069 white-space: nowrap;
1084 white-space: pre-wrap;
1319 white-space: pre;
1462 white-space: pre-wrap;
1539 white-space: nowrap;
1561 white-space: normal;
1601 white-space
[all...]
/external/bison/build-aux/
H A Dtexinfo.tex113 \def\linenumber{l.\the\inputlineno:\space}
157 % Since the category of space is not known, we have to be careful.
191 stand-alone strong-est time-stamp time-stamps which-ever white-space
241 % we did was a \nobreak, we don't want to insert more space.
368 % Only leave this space if the footline is nonempty.
411 % offset so that the space between them is truly \outerhsize or \outervsize
446 % Each occurrence of `\^^M' or `<space>\^^M' is replaced by a single space.
448 % \argremovec might leave us with trailing space, e.g.,
450 % This space toke
[all...]
/external/chromium_org/base/files/
H A Dfile_enumerator_posix.cc129 additional space for pathname may be needed
/external/chromium_org/chrome/browser/resources/
H A Dabout_memory.css169 white-space: nowrap;
205 white-space: nowrap;
/external/chromium_org/chrome/browser/resources/extensions/
H A Dextensions.css38 white-space: nowrap;
165 white-space: normal;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Drjsmin.py110 space = r'(?:%s|%s)' % (space_chars, space_comment)
180 r'%(space)s*(?:%(newline)s%(space)s*)*'
183 r'%(space)s*(?:%(newline)s%(space)s)*'
186 r'%(space)s*(?:(%(newline)s)%(space)s*)+'
188 r'|(?<=%(id_literal)s)(%(space)s)+(?=%(id_literal)s)'
189 r'|(?<=\+)(%(space)s)+(?=\+)'
190 r'|(?<=-)(%(space)
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/bio/
H A Dbss_bio.c142 * never more than buffer space (size-len) warrants. */
426 * bio_nwrite0: check how much space is available
482 ossl_ssize_t num, space; local
489 space = bio_nwrite0(bio, buf);
490 if (num > space)
491 num = space;
/external/chromium_org/third_party/openssl/openssl/crypto/des/
H A Ddes.c860 unsigned int n=0,space=0; local
885 if (space)
903 space=1;
911 space=0;
/external/openssl/crypto/bio/
H A Dbss_bio.c142 * never more than buffer space (size-len) warrants. */
426 * bio_nwrite0: check how much space is available
482 ossl_ssize_t num, space; local
489 space = bio_nwrite0(bio, buf);
490 if (num > space)
491 num = space;
/external/openssl/crypto/des/
H A Ddes.c860 unsigned int n=0,space=0; local
885 if (space)
903 space=1;
911 space=0;
/external/qemu/
H A Dcurses_keys.h248 { "space", 0x020 },
/external/v8/src/
H A Dstring-stream.h184 int space() const { return capacity_ - length_; } function in class:v8::internal::StringStream
/external/v8/tools/
H A Dtickprocessor.js382 TickProcessor.prototype.processHeapSampleBegin = function(space, state, ticks) {
383 if (space != 'Heap') return;
388 TickProcessor.prototype.processHeapSampleEnd = function(space, state) {
389 if (space != 'Heap' || !this.currentProducerProfile_) return;
569 // Also double-check that function belongs to the library address space.
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DStrip.java229 int space = ws.indexOf(' ');
232 space>=0 || tab>=0 )
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dnewtab.css98 white-space: nowrap;
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dapps_page.css33 white-space: nowrap;
H A Dmost_visited_page.css99 white-space: nowrap;
/external/chromium_org/chrome/browser/resources/ntp_android/
H A Dmostvisited_tablet.css102 white-space: nowrap;
/external/chromium_org/chrome/browser/resources/options/
H A Dmanage_profile_overlay.css114 white-space: pre-wrap;

Completed in 679 milliseconds

<<11121314151617181920>>