Searched refs:back (Results 51 - 75 of 365) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/net/
H A DPacketTracking.cpp59 if (now - listTrackedRequests.back().inserted > SEC2MS(180)) {
264 if (now - listChallengeRequests.back().inserted > SEC2MS(180)) {
265 AddDebugLogLineN(logKadPacketTracking, wxT("Challenge timed out, client not verified - ") + KadIPToString(listChallengeRequests.back().ip));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_da_btree.c121 node->hdr.info.back = 0;
147 * Walk back up the tree splitting/inserting/adjusting as necessary.
262 node->hdr.info.back = cpu_to_be32(oldblk->blkno);
268 if (node->hdr.info.back) {
269 if (be32_to_cpu(node->hdr.info.back) == addblk->blkno) {
633 * Walk back up the tree joining/deallocating as necessary.
719 ASSERT(!oldroot->hdr.info.back);
746 ASSERT(!blkinfo->back);
820 forward = (be32_to_cpu(info->forw) < be32_to_cpu(info->back));
825 blkno = be32_to_cpu(info->back);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
122 s->back = EOF;
412 if (s->stream.avail_out && s->back != EOF) {
413 *next_out++ = s->back;
416 s->back = EOF;
513 Push one byte back onto the stream.
521 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
522 s->back
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
122 s->back = EOF;
412 if (s->stream.avail_out && s->back != EOF) {
413 *next_out++ = s->back;
416 s->back = EOF;
513 Push one byte back onto the stream.
521 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
522 s->back
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
122 s->back = EOF;
412 if (s->stream.avail_out && s->back != EOF) {
413 *next_out++ = s->back;
416 s->back = EOF;
513 Push one byte back onto the stream.
521 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
522 s->back
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngrtran.c937 png_color back, back_1; local
943 back.red = png_ptr->gamma_table[png_ptr->background.red];
944 back.green = png_ptr->gamma_table[png_ptr->background.green];
945 back.blue = png_ptr->gamma_table[png_ptr->background.blue];
974 gs = 1.0; /* back */
979 back.red = (png_byte)png_ptr->background.red;
980 back.green = (png_byte)png_ptr->background.green;
981 back.blue = (png_byte)png_ptr->background.blue;
985 back.red = (png_byte)(pow(
987 back
1133 png_color back; local
2634 png_color back, back_1; local
2761 png_color back; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/
H A Dpngrtran.c793 png_color back, back_1; local
799 back.red = png_ptr->gamma_table[png_ptr->background.red];
800 back.green = png_ptr->gamma_table[png_ptr->background.green];
801 back.blue = png_ptr->gamma_table[png_ptr->background.blue];
828 gs = 1.0; /* back */
833 back.red = (png_byte)png_ptr->background.red;
834 back.green = (png_byte)png_ptr->background.green;
835 back.blue = (png_byte)png_ptr->background.blue;
839 back.red = (png_byte)(pow(
841 back
973 png_color back; local
2417 png_color back, back_1; local
2544 png_color back; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/isdn/pcbit/
H A Ddrv.c983 struct msn_entry *ptr, *back; local
987 back = ptr->next;
989 ptr = back;
998 struct msn_entry *back = NULL; local
1018 for (back=dev->msn_list; back->next; back=back->next);
1053 back->next = ptr;
1054 back
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dxan.c168 int size2, back; local
172 back = ((opcode & 0x60) << 3) + bytestream2_get_byte(&ctx) + 1;
177 back = (bytestream2_get_be16(&ctx) & 0x3fff) + 1;
182 back = ((opcode & 0x10) << 12) + bytestream2_get_be16(&ctx) + 1;
187 dest + size - dest_org < back ||
192 av_memcpy_backptr(dest, back, size2);
H A Dxxan.c146 int size2, back; local
149 back = ((opcode & 0x60) << 3) + bytestream2_get_byte(&s->gb) + 1;
153 back = (bytestream2_get_be16(&s->gb) & 0x3fff) + 1;
157 back = ((opcode & 0x10) << 12) + bytestream2_get_be16(&s->gb) + 1;
163 dest - orig_dest + size < back)
167 av_memcpy_backptr(dest, back, size2);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/mouse/
H A Dalps.c38 #define ALPS_FW_BK_1 0x10 /* front & back buttons present */
39 #define ALPS_FW_BK_2 0x20 /* front & back buttons present */
150 int back = 0, forward = 0; local
169 back = packet[0] & 0x10;
174 back = packet[3] & 4;
176 if ((middle = forward && back))
177 forward = back = 0;
231 input_report_key(dev, BTN_BACK, back);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dxan.c149 int size2, back; local
153 back = ((opcode & 0x60) << 3) + *src++ + 1;
158 back = (bytestream_get_be16(&src) & 0x3fff) + 1;
163 back = ((opcode & 0x10) << 12) + bytestream_get_be16(&src) + 1;
168 dest + size - dest_org < back ||
172 av_memcpy_backptr(dest, back, size2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DViewStyle.cxx159 styles[STYLE_LINENUMBER].back.desired = Platform::Chrome();
208 pal.WantFind(styles[i].back, want);
284 styles[STYLE_LINENUMBER].back.desired = Platform::Chrome();
286 // Set call tip fore/back to match the values previously set for call tips
287 styles[STYLE_CALLTIP].back.desired = ColourDesired(0xff, 0xff, 0xff);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dhttp.h134 struct back { struct in struct:HTTP
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/autofs/
H A Dautofs_i.h60 struct autofs_dir_ent **back; member in struct:autofs_dir_ent
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/power/
H A Dmpih-add1.S79 bdn Loop # decrement CTR and loop back
H A Dmpih-sub1.S80 bdn Loop # decrement CTR and loop back
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/mpi/powerpc32/
H A Dmpih-add1.S58 bdnz Loop # decrement CTR and loop back
H A Dmpih-sub1.S60 bdnz Loop # decrement CTR and loop back
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/power/
H A Dmpih-add1.S79 bdn Loop # decrement CTR and loop back
H A Dmpih-sub1.S80 bdn Loop # decrement CTR and loop back
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/mpi/powerpc32/
H A Dmpih-add1.S58 bdnz Loop # decrement CTR and loop back
H A Dmpih-sub1.S60 bdnz Loop # decrement CTR and loop back
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/lib/
H A Dclear_user.S90 EX( ldq_u $5, 0($6) ) # e0 : load dst word to mask back in
H A Dcsum_ipv6_magic.S83 addq $0,$1,$0 # .. e1 : merge the carries back into the csum

Completed in 295 milliseconds

1234567891011>>