Searched refs:bid (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/OpenAL-54/Source/OpenAL/al/
H A Dal.h592 AL_API ALboolean AL_APIENTRY alIsBuffer( ALuint bid );
595 AL_API void AL_APIENTRY alBufferData( ALuint bid, ALenum format, const ALvoid* data, ALsizei size, ALsizei freq );
600 AL_API void AL_APIENTRY alBufferf( ALuint bid, ALenum param, ALfloat value );
602 AL_API void AL_APIENTRY alBuffer3f( ALuint bid, ALenum param, ALfloat value1, ALfloat value2, ALfloat value3 );
604 AL_API void AL_APIENTRY alBufferfv( ALuint bid, ALenum param, const ALfloat* values );
606 AL_API void AL_APIENTRY alBufferi( ALuint bid, ALenum param, ALint value );
608 AL_API void AL_APIENTRY alBuffer3i( ALuint bid, ALenum param, ALint value1, ALint value2, ALint value3 );
610 AL_API void AL_APIENTRY alBufferiv( ALuint bid, ALenum param, const ALint* values );
615 AL_API void AL_APIENTRY alGetBufferf( ALuint bid, ALenum param, ALfloat* value );
617 AL_API void AL_APIENTRY alGetBuffer3f( ALuint bid, ALenu
[all...]
/macosx-10.10/libarchive-30/libarchive/libarchive/
H A Darchive_read_private.h45 * * The bid manager reads the first block from the current source.
47 * * The bid manager creates a new filter structure for the winning
51 * This ends only when no bidder provides a non-zero bid.
57 int (*bid)(struct archive_read_filter_bidder *, member in struct:archive_read_filter_bidder
160 int (*bid)(struct archive_read *); member in struct:archive_read::archive_format_descriptor
180 int (*bid)(struct archive_read *),
H A Darchive_read.c348 * Allow each registered stream transform to bid on whether
355 int number_bidders, i, bid, best_bid; local
369 if (bidder->bid != NULL) {
370 bid = (bidder->bid)(bidder, a->filter);
371 if (bid > best_bid) {
372 best_bid = bid;
495 * Allow each registered format to bid on whether it wants to handle
503 int bid, best_bid; local
513 if (a->format->bid) {
[all...]
H A Darchive_read_support_format_cpio.c173 int bid; local
181 bid = 0;
185 bid += 48;
193 bid += 48;
202 bid += 48;
210 bid += 16;
215 bid += 16;
220 return (bid);
H A Darchive_read_support_compression_xz.c88 * can give better error messages.) So the bid framework here gets
109 bidder->bid = xz_bidder_bid;
133 bidder->bid = lzma_bidder_bid;
H A Darchive_read_support_compression_bzip2.c68 * error messages.) So the bid framework here gets compiled even
85 reader->bid = bzip2_reader_bid;
H A Darchive_read_support_compression_compress.c153 bidder->bid = compress_bidder_bid;
H A Darchive_read_support_compression_gzip.c70 * error messages.) So the bid framework here gets compiled even
91 bidder->bid = gzip_bidder_bid;
H A Darchive_read_support_compression_rpm.c78 bidder->bid = rpm_bidder_bid;
H A Darchive_read_support_format_tar.c298 int bid; local
302 bid = 0;
313 * Usually, I bid the number of bits verified, but
323 bid += 48; /* Checksum is usually 6 octal digits. */
330 bid += 56;
335 bid += 56;
343 bid += 2; /* 6 bits of variation in an 8-bit field leaves 2 bits. */
363 return (bid);
988 * We don't know if it's pax: If the bid
H A Darchive_read_support_compression_program.c105 * bid twice in the same pipeline.
169 bidder->bid = program_bidder_bid;
187 * If we do have a signature, bid only if that matches.
189 * If there's no signature, we bid INT_MAX the first time
190 * we're called, then never bid again.
205 /* No match, so don't bid. */
211 /* Otherwise, bid once and then never bid again. */
H A Darchive_read_support_format_xar.c458 int bid; local
464 bid = 0;
470 bid += 32;
476 bid += 16;
482 bid += 16;
490 bid += 32;
496 return (bid);
H A Darchive_read_support_compression_uu.c78 bidder->bid = uudecode_bidder_bid;
/macosx-10.10/OpenAL-54/Source/OpenAL/
H A DoalImp.cpp1680 DebugMessageN1("alDeleteBuffers: oalBuffer == NULL, bid = %ld", (long int) bids[i]);
1685 DebugMessageN1("alDeleteBuffers: oalBuffer cannot currently be removed, a source is still attached, bid = %ld", (long int) bids[i]);
1726 AL_API ALboolean AL_APIENTRY alIsBuffer(ALuint bid) argument
1729 //DebugMessageN1("alIsBuffer--> buffer %ld", (long int) bid);
1735 isBuffer = IsValidBufferObject(bid);
1738 DebugMessageN2("ERROR: alIsBuffer FAILED: buffer = %ld error = %s", (long int) bid, alGetString(result));
1742 DebugMessageN1("ERROR: alIsBuffer FAILED: buffer = %ld", (long int) bid);
1750 AL_API void AL_APIENTRY alBufferData( ALuint bid, argument
1757 DebugMessageN4("alBufferData--> buffer %ld : %s : %ld bytes : %ldHz", (long int) bid, GetFormatString(format), (long int) size, (long int) freq);
1766 oalBuffer = ProtectBufferObject(bid);
1785 alBufferf( ALuint bid, ALenum pname, ALfloat value ) argument
1794 alBuffer3f( ALuint bid, ALenum pname, ALfloat value1, ALfloat value2, ALfloat value3 ) argument
1803 alBufferfv( ALuint bid, ALenum pname, const ALfloat* values ) argument
1812 alBufferi( ALuint bid, ALenum pname, ALint value ) argument
1821 alBuffer3i( ALuint bid, ALenum pname, ALint value1, ALint value2, ALint value3 ) argument
1831 alBufferiv( ALuint bid, ALenum pname, const ALint* values ) argument
1841 alGetBufferf(ALuint bid, ALenum pname, ALfloat *value) argument
1877 alGetBuffer3f( ALuint bid, ALenum pname, ALfloat* value1, ALfloat* value2, ALfloat* value3) argument
1886 alGetBufferfv( ALuint bid, ALenum pname, ALfloat* values ) argument
1896 alGetBufferi(ALuint bid, ALenum pname, ALint *value) argument
1945 alGetBuffer3i( ALuint bid, ALenum pname, ALint* value1, ALint* value2, ALint* value3) argument
1955 alGetBufferiv( ALuint bid, ALenum pname, ALint* values ) argument
4718 alBufferDataStatic(ALint bid, ALenum format, const ALvoid* data, ALsizei size, ALsizei freq) argument
[all...]
H A DMacOSX_OALExtensions.h91 typedef ALvoid AL_APIENTRY (*alBufferDataStaticProcPtr) (ALint bid, ALenum format, const ALvoid* data, ALsizei size, ALsizei freq);
H A DoalImp.h53 AL_API ALvoid AL_APIENTRY alBufferDataStatic (ALint bid, ALenum format, const ALvoid* data, ALsizei size, ALsizei freq);
/macosx-10.10/BerkeleyDB-21/db/examples_c/
H A Dex_tpcb.c115 u_int32_t bid; member in struct:_histrec
462 hrec.bid = random_id(BRANCH, accounts, branches, tellers);
639 hrec.bid = branch;
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/
H A DTpcbExample.cpp109 u_int32_t bid; member in struct:Histrec
418 hrec.bid = random_id(BRANCH, accounts, branches, tellers);
564 hrec.bid = branch;
/macosx-10.10/BerkeleyDB-21/db/examples_cxx/wce_tpcb/
H A DTpcbExample.cpp16 u_int32_t bid; member in struct:Histrec
256 hrec.bid = randomId(BRANCH, accounts, branches, tellers);
396 hrec.bid = branch;
/macosx-10.10/vim-55/runtime/autoload/
H A Dphpcomplete.vim2169 \ 'ifx_copy_blob(': 'int bid | int',
2178 \ 'ifx_free_blob(': 'int bid | int',
2179 \ 'ifx_free_char(': 'int bid | int',
2181 \ 'ifx_get_blob(': 'int bid | int',
2182 \ 'ifx_get_char(': 'int bid | int',
2192 \ 'ifx_update_blob(': 'int bid, string content | bool',
2193 \ 'ifx_update_char(': 'int bid, string content | int',
2194 \ 'ifxus_close_slob(': 'int bid | int',
2196 \ 'ifxus_free_slob(': 'int bid | int',
2197 \ 'ifxus_open_slob(': 'int bid, in
[all...]
/macosx-10.10/postfix-255/postfix/mantools/
H A Dpostlink984 s;\bpostscreen_for[-</bB>]*\n*[ <bB>]*bid[-</bB>]*\n* *[<bB>]*den_commands\b;<a href="postconf.5.html#postscreen_forbidden_commands">$&</a>;g;

Completed in 474 milliseconds