Searched refs:bytes (Results 401 - 425 of 1605) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclObj.c159 /* The string rep is already invalidated so we can use the bytes value \
161 (objPtr)->bytes = (char *) ((contextPtr)->deletionStack); \
165 (contextPtr)->deletionStack = (Tcl_Obj *) (objPtrVar)->bytes
1099 objPtr->bytes = tclEmptyStringRep;
1348 /* Invalidate the string rep first so we can use the bytes value
1413 /* Invalidate the string rep first so we can use the bytes value
1562 if (objPtr->bytes == NULL) {
1563 dupPtr->bytes = NULL;
1564 } else if (objPtr->bytes != tclEmptyStringRep) {
1565 TclInitStringRep(dupPtr, objPtr->bytes, objPt
2735 unsigned char *bytes = (unsigned char *)&scratch; local
3036 unsigned char *bytes = (unsigned char *) &scratch; local
3456 unsigned char *bytes = (unsigned char *)&scratch; local
3481 unsigned char *bytes = (unsigned char *)&scratch; local
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A DRijndael.pm44 Returns the keysize, which is 32 (bytes). The Rijndael cipher
45 actually supports keylengths of 16, 24 or 32 bytes, but there is no
50 The blocksize for Rijndael is 16 bytes (128 bits), although the
52 our bytes. 128 bits, is however, the AES-specified block size,
75 (16 bytes), otherwise this function will croak. Apart from that, it
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A DRijndael.pm44 Returns the keysize, which is 32 (bytes). The Rijndael cipher
45 actually supports keylengths of 16, 24 or 32 bytes, but there is no
50 The blocksize for Rijndael is 16 bytes (128 bits), although the
52 our bytes. 128 bits, is however, the AES-specified block size,
75 (16 bytes), otherwise this function will croak. Apart from that, it
/macosx-10.9.5/IOFireWireFamily-455.4.0/IOFireWireFamily.kmodproj/
H A DIOFWRingBufferQ.cpp108 // Remove the next n bytes in queue given by 'size', but do not return bytes
116 // Remove the next n bytes in queue given by 'size' and write bytes into 'copy'
138 // copy not necessary, simply make bytes available in queue
155 IOByteCount IOFWRingBufferQ::readBytes(IOByteCount offset, void * bytes, IOByteCount withLength) argument
157 return fMemDescriptor->readBytes( offset, bytes, withLength );
161 // Insert 'bytes' into queue contiguously
163 bool IOFWRingBufferQ::enqueueBytes( void * bytes, IOByteCount size ) argument
170 // determine if 'bytes' wil
[all...]
/macosx-10.9.5/Libc-997.90.3/locale/FreeBSD/
H A Dgb18030.c54 u_char bytes[4]; member in struct:__anon2905
88 if (gs->count < 0 || gs->count > sizeof(gs->bytes)) {
99 ncopy = MIN(MIN(n, GB18030_MB_CUR_MAX), sizeof(gs->bytes) - gs->count);
100 memcpy(gs->bytes + gs->count, s, ncopy);
103 s = (char *)gs->bytes;
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/x86/
H A Dffi.c221 ffi_call_SYSV(ffi_prep_args, &ecif, cif->bytes,
228 ffi_call_STDCALL(ffi_prep_args, &ecif, cif->bytes,
395 memcpy (stack, ecif->avalue, ecif->cif->bytes);
449 ffi_call_SYSV(ffi_prep_args_raw, &ecif, cif->bytes,
456 ffi_call_STDCALL(ffi_prep_args_raw, &ecif, cif->bytes,
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dcfutilities.cpp252 CFDataRef cfLoadFile(int fd, size_t bytes) argument
254 uint8_t *buffer = (uint8_t *) malloc(bytes);
259 if (read(fd, buffer, bytes) != bytes) {
264 CFDataRef result = CFDataCreateWithBytesNoCopy(kCFAllocatorMalloc, buffer, bytes, kCFAllocatorMalloc);
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dcfutilities.cpp252 CFDataRef cfLoadFile(int fd, size_t bytes) argument
254 uint8_t *buffer = (uint8_t *) malloc(bytes);
259 if (read(fd, buffer, bytes) != bytes) {
264 CFDataRef result = CFDataCreateWithBytesNoCopy(kCFAllocatorMalloc, buffer, bytes, kCFAllocatorMalloc);
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DFileWriter.cpp182 void FileWriter::didWrite(long long bytes, bool complete) argument
191 ASSERT(!m_bytesToWrite || bytes + m_bytesWritten > 0);
192 ASSERT(bytes + m_bytesWritten <= m_bytesToWrite);
193 m_bytesWritten += bytes;
195 setPosition(position() + bytes);
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DDataView.cpp37 char bytes[sizeof(T)]; member in union:__anon5284::Value
139 memcpy(value.bytes, static_cast<const char*>(m_baseAddress) + byteOffset, sizeof(T));
140 flipBytesIfNeeded(value.bytes, sizeof(T), littleEndian);
155 flipBytesIfNeeded(tempValue.bytes, sizeof(T), littleEndian);
156 memcpy(static_cast<char*>(m_baseAddress) + byteOffset, tempValue.bytes, sizeof(T));
/macosx-10.9.5/cups-372.4/cups/systemv/
H A Dcupstestdsc.c101 size_t bytes; /* Length of line */ local
163 while ((bytes = cupsFileGetLine(fp, line, sizeof(line))) > 0)
167 if (bytes > 255)
178 linenum, (int)bytes);
327 for (i = 0; !binary && i < bytes; i ++)
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkState.c150 objPtr->bytes = Tcl_Alloc((unsigned)len);
152 strncpy(objPtr->bytes, Tcl_DStringValue(&result), (size_t)len-1);
153 objPtr->bytes[len-1] = '\0';
157 objPtr->bytes = Tcl_Alloc(1);
158 *objPtr->bytes = '\0';
/macosx-10.9.5/xnu-2422.115.4/osfmk/i386/
H A Dphys.c209 __private_extern__ int ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t bytes) { argument
258 if (((((uint32_t)src64 & (I386_PGBYTES-1)) + bytes) > I386_PGBYTES) || ((((uint32_t)dst64 & (I386_PGBYTES-1)) + bytes) > I386_PGBYTES) ) {
268 switch (bytes) {
280 err = _bcopy(src, dst, bytes);
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Ddarwin.c772 static int usb_bulk_transfer (usb_dev_handle *dev, int ep, char *bytes, u_int32_t size, int timeout, int usb_bt_read) argument
803 fprintf (stderr, "libusb/darwin.c usb_bulk_transfer: Transfering %i bytes of data on endpoint 0x%02x\n", size, ep);
812 result = (*(device->interface))->ReadPipeTO (device->interface, pipeRef, bytes, (UInt32 *)&size, timeout, timeout);
814 result = (*(device->interface))->WritePipeTO (device->interface, pipeRef, bytes, size, timeout, timeout);
823 result = (*(device->interface))->ReadPipe (device->interface, pipeRef, bytes, (UInt32 *)&size);
825 result = (*(device->interface))->WritePipe (device->interface, pipeRef, bytes, size);
857 static int usb_bulk_transfer_async (usb_dev_handle *dev, int ep, char *bytes, int size, int timeout,
902 fprintf (stderr, "libusb/darwin.c usb_bulk_transfer: Transfering %i bytes of data on endpoint 0x%02x\n",
911 result = rw_async_to (device->interface, pipeRef, bytes, size, timeout, timeout,
914 result = rw_async (device->interface, pipeRef, bytes, siz
954 usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
967 usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
983 usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
989 usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
995 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *bytes, int size, int timeout) argument
[all...]
H A Dlinux.c138 int value, int index, char *bytes, int size, int timeout)
149 ctrl.data = bytes;
163 char *bytes, int size, int timeout)
203 urb.buffer = bytes + bytesdone;
280 int usb_bulk_write(usb_dev_handle *dev, int ep, char *bytes, int size, argument
284 return usb_urb_transfer(dev, ep, USB_URB_TYPE_BULK, bytes, size,
288 int usb_bulk_read(usb_dev_handle *dev, int ep, char *bytes, int size, argument
293 return usb_urb_transfer(dev, ep, USB_URB_TYPE_BULK, bytes, size,
302 int usb_interrupt_write(usb_dev_handle *dev, int ep, char *bytes, int size, argument
306 return usb_urb_transfer(dev, ep, USB_URB_TYPE_INTERRUPT, bytes, siz
137 usb_control_msg(usb_dev_handle *dev, int requesttype, int request, int value, int index, char *bytes, int size, int timeout) argument
162 usb_urb_transfer(usb_dev_handle *dev, int ep, int urbtype, char *bytes, int size, int timeout) argument
310 usb_interrupt_read(usb_dev_handle *dev, int ep, char *bytes, int size, int timeout) argument
[all...]
/macosx-10.9.5/pdisk-9/
H A Ddump.c272 double bytes; local
335 bytes = ((double)size) * map->logical_block;
336 adjust_value_and_compute_prefix(&bytes, &j);
338 printf(" (%#5.1f%c)", bytes, j);
575 printf(" #: booter bytes load_address "
683 printf("boot length (in bytes): %10u\n", p->dpme_boot_bytes);
937 double bytes; local
940 bytes = *value;
941 if (bytes < 1024.0) {
944 bytes
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/bind/test/
H A DBindingSpeedTest.java238 byte[] bytes = fo.toByteArray();
239 FastInputStream fi = new FastInputStream(bytes);
242 return bytes.length;
258 byte[] bytes = fo.toByteArray();
259 FastInputStream fi = new FastInputStream(bytes);
262 return (bytes.length - SerialOutput.getStreamHeader().length);
271 byte[] bytes = fo.toByteArray();
272 FastInputStream fi = new FastInputStream(bytes);
275 return (bytes.length - SerialOutput.getStreamHeader().length);
401 byte[] bytes
[all...]
/macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/
H A DIOBootFramebuffer.cpp200 IOByteCount bytes; local
210 bytes = (info.bytesPerRow * info.activeHeight) + 128;
212 return (IODeviceMemory::withRange(bootDisplay.v_baseAddr, bytes));
/macosx-10.9.5/IONetworkingFamily-100/
H A DIOMbufQueue.h37 uint32_t bytes; member in struct:IOMbufQueue
51 q->bytes = 0;
190 q->bytes += len;
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DCopiedBlock.h144 inline void CopiedBlock::didEvacuateBytes(unsigned bytes) argument
146 ASSERT(m_liveBytes >= bytes);
147 m_liveBytes -= bytes;
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dentropy.c63 * /dev/random), then collect RANDOM_SEED_SIZE bytes of randomness from
71 * Collect 'len' bytes of entropy into 'buf' from PRNGD/EGD daemon
96 fatal("Too many bytes (%d) to read from PRNGD", len);
170 seed_from_prngd(unsigned char *buf, size_t bytes) argument
174 if (get_random_bytes_prngd(buf, bytes, PRNGD_PORT, NULL) == 0)
179 if (get_random_bytes_prngd(buf, bytes, 0, PRNGD_SOCKET) == 0)
191 error("Couldn't obtain random bytes (error %ld)",
206 debug3("rexec_recv_rng_seed: seeding rng with %u bytes", len);
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdata.cpp92 size_t bytes = strlen(hexDigits) / 2; // (discards malformed odd end) local
93 length(bytes); // (will assert if we try to grow it)
94 for (size_t n = 0; n < bytes; n++) {
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdata.cpp92 size_t bytes = strlen(hexDigits) / 2; // (discards malformed odd end) local
93 length(bytes); // (will assert if we try to grow it)
94 for (size_t n = 0; n < bytes; n++) {
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DNetscapePluginHostManager.mm129 kern_return_t kr = _WKPASpawnPluginHost(m_pluginVendorPort, reinterpret_cast<uint8_t*>(const_cast<void*>([data bytes])), [data length], &pluginHostPort);
138 kr = _WKPASpawnPluginHost(m_pluginVendorPort, reinterpret_cast<uint8_t*>(const_cast<void*>([data bytes])), [data length], &pluginHostPort);
173 kr = _WKPHCheckInWithPluginHost(pluginHostPort, (uint8_t*)[data bytes], [data length], clientPort, psn.highLongOfPSN, psn.lowLongOfPSN, renderServerPort,
200 if (_WKPACheckInApplication(pluginAgentPort, (uint8_t*)[appNameData bytes], [appNameData length], &m_pluginVendorPort) != KERN_SUCCESS)
254 kern_return_t kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
268 kr = _WKPHInstantiatePlugin(hostProxy->port(), requestID, (uint8_t*)[data bytes], [data length], instance->pluginID());
/macosx-10.9.5/configd-596.15/scutil.tproj/
H A Ddictionary.c156 uint8_t *bytes; local
164 SCPrint(TRUE, stdout, CFSTR("d.add: not enough bytes.\n"));
173 bytes = (uint8_t *)CFDataGetBytePtr(data);
189 bytes[j] = byte;

Completed in 336 milliseconds

<<11121314151617181920>>