Searched refs:buffer (Results 251 - 275 of 3857) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/emacs-92/emacs/lisp/erc/
H A Derc-spelling.el41 ;; called AFTER the server buffer is initialized.
43 (dolist (buffer (erc-buffer-list))
44 (erc-spelling-init buffer)))
46 (dolist (buffer (erc-buffer-list))
47 (with-current-buffer buffer (flyspell-mode 0)))))
50 "An alist mapping buffer names to dictionaries.
51 The `car' of every cell is a buffer nam
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DTimeValue.inc45 char buffer[25];
46 strftime(buffer, 25, "%a %b %d %H:%M:%S %Y", lt);
47 return std::string(buffer);
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dvalid_mailhost_addr.c137 VSTRING *buffer = vstring_alloc(1); local
142 while (vstring_fgets_nonl(buffer, VSTREAM_IN)) {
143 msg_info("testing: \"%s\"", vstring_str(buffer));
144 if (vstring_str(buffer)[0] == '[')
145 valid_mailhost_literal(vstring_str(buffer), DO_GRIPE);
147 valid_mailhost_addr(vstring_str(buffer), DO_GRIPE);
/macosx-10.9.5/system_cmds-597.90.1/at.tproj/
H A Dperm.c62 char *buffer; local
67 if ((buffer = malloc(len+2)) == NULL)
70 while(fgets(buffer, len+2, fp) != NULL)
72 if ((strncmp(name, buffer, len) == 0) &&
73 (buffer[len] == '\n'))
80 free(buffer);
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/at.tproj/
H A Dperm.c62 char *buffer; local
67 if ((buffer = malloc(len+2)) == NULL)
70 while(fgets(buffer, len+2, fp) != NULL)
72 if ((strncmp(name, buffer, len) == 0) &&
73 (buffer[len] == '\n'))
80 free(buffer);
/macosx-10.9.5/xnu-2422.115.4/libsyscall/mach/
H A Dstring.c47 _mach_hex(char **buffer, int *length, unsigned long long n) argument
61 *(*buffer)++ = *cp++;
69 _mach_vsnprintf(char *buffer, int length, const char *fmt, va_list ap) argument
72 char *out_ptr = buffer;
112 _mach_snprintf(char *buffer, int length, const char *fmt, ...) argument
117 ret = _mach_vsnprintf(buffer, length, fmt, ap);
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DVMInspector.cpp155 // buffer is only used for 2 purposes:
161 // fragments and printing each fragment before re-using the buffer to
167 char buffer[129]; // 128 chars + null terminator. local
168 char* end = &buffer[sizeof(buffer) - 1];
173 char* curr = buffer;
179 // Out of buffer space. Flush the fragment, and start over.
181 bool success = printArg("%s", buffer);
183 errorStr = buffer;
186 curr = buffer;
478 StringFormatPrinter(char* buffer) argument
506 StringNFormatPrinter(char* buffer, size_t size) argument
555 sprintf(char* buffer, const char* format, ...) argument
563 snprintf(char* buffer, size_t size, const char* format, ...) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/t/
H A D043VarSubst.t44 my $buffer = Log::Log4perl::Appender::TestBuffer->by_name("BufferApp");
45 like($buffer->buffer, qr/foobar/);
70 $buffer = Log::Log4perl::Appender::TestBuffer->by_name("Logfile");
71 like($buffer->buffer, qr/foobar/);
72 $buffer = Log::Log4perl::Appender::TestBuffer->by_name("Screen");
73 like($buffer->buffer, qr/foobar/);
102 $buffer
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/t/
H A D043VarSubst.t52 my $buffer = Log::Log4perl::Appender::TestBuffer->by_name("BufferApp");
53 like($buffer->buffer, qr/foobar/);
78 $buffer = Log::Log4perl::Appender::TestBuffer->by_name("Logfile");
79 like($buffer->buffer, qr/foobar/);
80 $buffer = Log::Log4perl::Appender::TestBuffer->by_name("Screen");
81 like($buffer->buffer, qr/foobar/);
110 $buffer
[all...]
H A D021AppThres.t52 $app0->buffer("");
53 $app1->buffer("");
57 is($app0->buffer(), "ERROR - Yeah, log0\n", "Threshold ERROR");
58 is($app1->buffer(), "", "Threshold WARN");
65 $app0->buffer("");
66 $app1->buffer("");
74 is($app0->buffer(), "", "inherited");
75 is($app1->buffer(), "WARN - Yeah, log1\n", "inherited");
80 $app0->buffer("");
81 $app1->buffer("");
[all...]
/macosx-10.9.5/IODVDStorageFamily-35/
H A DIODVDMedia.cpp58 IOReturn IODVDMedia::reportKey( IOMemoryDescriptor * buffer, argument
69 if (buffer == 0 && format != kDVDKeyFormatAGID_Invalidate)
74 return getProvider()->reportKey( /* buffer */ buffer,
81 IOReturn IODVDMedia::sendKey( IOMemoryDescriptor * buffer, argument
91 if (buffer == 0 && format != kDVDKeyFormatAGID_Invalidate)
96 return getProvider()->sendKey( /* buffer */ buffer,
102 IOReturn IODVDMedia::readStructure( IOMemoryDescriptor * buffer, argument
113 if (buffer
145 readDiscInfo( IOMemoryDescriptor * buffer, UInt16 * actualByteCount ) argument
166 readRZoneInfo( IOMemoryDescriptor * buffer, UInt32 address, DVDRZoneInfoAddressType addressType, UInt16 * actualByteCount ) argument
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dns32k-dis.c265 /* Extract "count" bits starting "offset" bits into buffer. */ argument
268 bit_extract (bfd_byte *buffer, int offset, int count)
273 buffer += offset >> 3;
279 FETCH_DATA (dis_info, buffer + 1);
280 if ((*buffer & (1 << offset)))
285 buffer++;
292 /* Like bit extract but the buffer is valid and doen't need to be fetched. */ argument
295 bit_extract_simple (bfd_byte *buffer, int offset, int count)
300 buffer += offset >> 3;
306 if ((*buffer
316 bit_copy(bfd_byte *buffer, int offset, int count, char *to) argument
367 get_displacement(bfd_byte *buffer, int *aoffsetp) argument
453 print_insn_arg(int d, int ioffset, int *aoffsetp, bfd_byte *buffer, bfd_vma addr, char *result, int index_offset) argument
745 bfd_byte *buffer = priv.the_buffer; local
[all...]
H A Dm32r-opc.h35 #define CGEN_DIS_HASH(buffer, value) \
36 (X (buffer) | \
37 (X (buffer) == 0x40 || X (buffer) == 0xe0 || X (buffer) == 0x60 || X (buffer) == 0x50 ? 0 \
38 : X (buffer) == 0x70 || X (buffer) == 0xf0 ? (((unsigned char *) (buffer))[0] & 0xf) \
39 : X (buffer)
[all...]
/macosx-10.9.5/postfix-252/postfix/src/smtp/
H A Dsmtp_chat.c189 vstring_vsprintf(session->buffer, fmt, ap);
191 smtp_chat_append(session, "Out: ", STR(session->buffer));
198 msg_info("> %s: %s", session->namaddrport, STR(session->buffer));
203 smtp_fputs(STR(session->buffer), LEN(session->buffer), session->stream);
247 * Initialize the response data buffer.
264 last_char = smtp_get(session->buffer, session->stream, var_line_limit,
267 printable(STR(session->buffer), '?');
270 session->namaddrport, var_line_limit, STR(session->buffer));
272 msg_info("< %s: %.100s", session->namaddrport, STR(session->buffer));
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dcmemory.c93 uprv_realloc(void * buffer, size_t size) { argument
98 if (buffer == zeroMem) {
102 (*pFree)(pContext, buffer);
104 uprv_default_free(buffer);
110 return (*pRealloc)(pContext, buffer, size);
112 return uprv_default_realloc(buffer, size);
118 uprv_free(void *buffer) { argument
123 if (buffer != zeroMem) {
125 (*pFree)(pContext, buffer);
127 uprv_default_free(buffer);
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/io/
H A Dustream.cpp40 char buffer[200]; local
49 char *s, *sLimit = buffer + (sizeof(buffer) - 1);
52 s = buffer;
57 if(s > buffer) {
58 stream << buffer; local
79 char buffer[16]; local
129 buffer[idx++] = ch;
131 stream.putback(buffer[--idx]);
154 buffer[id
[all...]
/macosx-10.9.5/IOCDStorageFamily-51/
H A DIOCDMedia.cpp157 IOMemoryDescriptor * buffer,
163 // specified buffer, asynchronously. When the read completes, the caller
166 // The buffer will be retained for the duration of the read.
189 if (buffer == 0)
195 if (_mediaSize < byteStart + buffer->getLength())
204 /* buffer */ buffer,
217 IOMemoryDescriptor * buffer,
223 // specified buffer, asynchronously. When the write completes, the caller
226 // The buffer wil
155 read(IOService * , UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
215 write(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
288 readCD(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, CDSectorArea sectorArea, CDSectorType sectorType, IOStorageAttributes * attributes, UInt64 * actualByteCount) argument
330 readCD(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, CDSectorArea sectorArea, CDSectorType sectorType, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
466 readTOC(IOMemoryDescriptor * buffer, CDTOCFormat format, UInt8 formatAsTime, UInt8 trackOrSessionNumber, UInt16 * actualByteCount) argument
494 readDiscInfo(IOMemoryDescriptor * buffer, UInt16 * actualByteCount) argument
516 readTrackInfo(IOMemoryDescriptor * buffer, UInt32 address, CDTrackInfoAddressType addressType, UInt16 * actualByteCount) argument
542 writeCD(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, CDSectorArea sectorArea, CDSectorType sectorType, IOStorageAttributes * attributes, IOStorageCompletion * completion) argument
612 writeCD(IOService * client, UInt64 byteStart, IOMemoryDescriptor * buffer, CDSectorArea sectorArea, CDSectorType sectorType, IOStorageAttributes * attributes, UInt64 * actualByteCount) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/psych/yaml/
H A Dreader.c53 /* Ensure that we had enough bytes in the raw buffer. */
90 * Update the raw buffer.
98 /* Return if the raw buffer is full. */
108 /* Move the remaining bytes in the raw buffer to the beginning. */
119 /* Call the read handler to fill the buffer. */
135 * Ensure that the buffer contains at least `length` characters.
138 * The length is supposed to be significantly less that the buffer size.
148 /* If the EOF flag is set and the raw buffer is empty, do nothing. */
153 /* Return if the buffer contains enough characters. */
165 /* Move the unread characters to the beginning of the buffer
[all...]
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Db2m.c64 char *buffer; member in struct:linebuffer
152 data.buffer = xnew (200, char);
155 || !strneq (data.buffer, "BABYL OPTIONS:", 14))
160 if (streq (data.buffer, "*** EOOH ***") && !printing)
167 if (data.buffer[0] == '\037')
169 if (data.buffer[1] == '\0')
171 else if (data.buffer[1] == '\f')
175 p = strtok (data.buffer, " ,\r\n\t");
190 if ((data.buffer[0] == '\0') && header)
198 puts (data.buffer);
235 char *buffer = linebuffer->buffer; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXlgets.c34 Tcl_DString buffer; /* Buffer for line being read */ member in struct:__anon12971
86 if (Tcl_Gets (dataPtr->channel, &dataPtr->buffer) < 0) {
116 Tcl_DStringAppend (&dataPtr->buffer, "\n", 1);
147 Tcl_DStringInit (&dataPtr->buffer);
157 p = Tcl_DStringValue (&dataPtr->buffer);
158 limit = p + Tcl_DStringLength (&dataPtr->buffer);
162 dataPtr->lineIdx = p - Tcl_DStringValue (&dataPtr->buffer);
201 p = Tcl_DStringValue (&dataPtr->buffer) + dataPtr->lineIdx;
202 limit = Tcl_DStringValue (&dataPtr->buffer) +
203 Tcl_DStringLength (&dataPtr->buffer);
[all...]
/macosx-10.9.5/CPANInternal-140/Params-Validate/
H A DValidate.xs145 SV* buffer;
148 buffer = sv_2mortal(newSVpv("", 0));
151 sv_catpv(buffer, "scalar");
155 sv_catpv(buffer, empty ? "arrayref" : " arrayref");
159 sv_catpv(buffer, empty ? "hashref" : " hashref");
163 sv_catpv(buffer, empty ? "coderef" : " coderef");
167 sv_catpv(buffer, empty ? "glob" : " glob");
171 sv_catpv(buffer, empty ? "globref" : " globref");
175 sv_catpv(buffer, empty ? "scalarref" : " scalarref");
179 sv_catpv(buffer, empt
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/mech/
H A Dgss_aeap.c117 * Update the length fields in iov buffer for the types:
159 * Free all buffer allocated by gss_wrap_iov() or gss_unwrap_iov() by
181 gss_release_buffer(&junk, &iov[i].buffer);
203 gss_iov_buffer_desc *buffer,
206 if (buffer->type & GSS_IOV_BUFFER_TYPE_FLAG_ALLOCATED) {
207 if (buffer->buffer.length == size)
209 free(buffer->buffer.value);
212 buffer
202 _gss_mg_allocate_buffer(OM_uint32 *minor_status, gss_iov_buffer_desc *buffer, size_t size) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DLineEnding.cpp49 CStringBuffer(CString& buffer) argument
50 : m_buffer(buffer)
67 const CString& buffer() const { return m_buffer; } function in class:__anon5443::CStringBuffer
75 VectorCharAppendBuffer(Vector<char>& buffer) argument
76 : m_buffer(buffer)
97 void internalNormalizeLineEndingsToCRLF(const CString& from, OutputBuffer& buffer) argument
121 buffer.copy(from);
126 char* q = buffer.allocate(newLen);
175 // Grow the result buffer.
206 CStringBuffer buffer(resul
[all...]
/macosx-10.9.5/cups-372.4/cups/locale/
H A Dtranslate.c173 buffer[65536], /* Input/output buffer */ local
174 *bufptr, /* Pointer into buffer */
175 *bufend, /* Pointer to end of buffer */
209 * Encode the form data into the buffer...
212 snprintf(buffer, sizeof(buffer),
214 bufptr = buffer + strlen(buffer);
215 bufend = buffer
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/java/CyrusSasl/
H A DSaslUtils.java54 StringBuffer buffer = new StringBuffer();
63 buffer.append(enc_table[(a >>> 2) & 0x3F]);
64 buffer.append(enc_table[((a << 4) & 0x30) + ((b >>> 4) & 0xf)]);
65 buffer.append(enc_table[((b << 2) & 0x3c) + ((c >>> 6) & 0x3)]);
66 buffer.append(enc_table[c & 0x3F]);
69 buffer.append("\r\n");*/
75 buffer.append(enc_table[(a >>> 2) & 0x3F]);
76 buffer.append(enc_table[((a << 4) & 0x30)]);
77 buffer.append('=');
78 buffer
[all...]

Completed in 142 milliseconds

<<11121314151617181920>>