Searched refs:skipBytes (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSound.c992 Tcl_SetObjResult(interp, Tcl_NewIntObj(s->skipBytes));
1113 if (Tcl_GetIntFromObj(interp, objv[arg+1], &s->skipBytes) != TCL_OK)
1347 Tcl_SetObjResult(interp, Tcl_NewIntObj(s->skipBytes));
1614 s->skipBytes = 0;
1677 int forceFormat = -1, skipBytes = -1, buffersize = -1; local
1835 if (Tcl_GetIntFromObj(interp, objv[arg+1], &skipBytes) != TCL_OK)
1895 if (skipBytes != -1) {
1896 s->skipBytes = skipBytes;
H A DjkSoundFile.c1318 s->length = (TCL_TELL(ch) - s->skipBytes) / (s->sampsize * s->nchannels);
1322 s->length = (obj->length - s->skipBytes) / (s->sampsize * s->nchannels);
1328 s->length = (length - s->skipBytes) / (s->sampsize * s->nchannels);
1332 s->headSize = s->skipBytes;
2636 if (Tcl_GetIntFromObj(interp, objv[arg+1], &s->skipBytes) != TCL_OK)
3026 if (Tcl_GetIntFromObj(interp, objv[arg+1], &s->skipBytes) != TCL_OK) {
H A DjkSound.h103 int skipBytes; member in struct:Sound
H A DjkSoundEdit.c783 if (Tcl_GetIntFromObj(interp, objv[arg+1], &t->skipBytes) != TCL_OK) {
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_inter.c403 int skipBytes,
412 if (skipBytes >= seenBytes) {
414 offsetBytes = skipBytes;
415 } else if ((matchBytes + skipBytes - seenBytes) > 0) {
416 echoBytes = matchBytes + skipBytes - seenBytes;
424 esPtr->echoed = matchBytes + skipBytes - esPtr->printed;
401 intEcho( ExpState *esPtr, int skipBytes, int matchBytes) argument
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Modules/
H A D_callbacks.m293 m_CGDataProviderSkipBytesCallback, /* skipBytes */
542 "CGDataConsumerCreate(info, (getBytes, skipBytes, rewind, releaseProvider)) -> object\n"
544 "getBytes, skipBytes, rewind and release are callback functions. Release may be None");
551 PyObject* skipBytes;
555 if (!PyArg_ParseTuple(args, "O(OOOO)", &info, &getBytes, &skipBytes, &rewind, &release)) {
563 if (!PyCallable_Check(skipBytes)) {
564 PyErr_SetString(PyExc_TypeError, "skipBytes is not callable");
576 PyObject* real_info = Py_BuildValue("OOOOO", info, getBytes, skipBytes, rewind, release);
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecCertificate.c4980 size_t skipBytes = 0; local
4981 while (b[skipBytes] == 0x80)
4982 ++skipBytes;
4984 CFDataAppendBytes(currentResult, b + skipBytes, sizeof(b) - skipBytes);

Completed in 208 milliseconds