Searched refs:mid (Results 1 - 25 of 156) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/mm/
H A Dextable_64.c49 const struct exception_table_entry *mid; local
51 mid = check_exception_ranges(value);
52 if (mid)
53 return mid;
58 mid = (last - first) / 2 + first;
59 diff = mid->insn - value;
61 return mid;
63 first = mid+1;
65 last = mid-1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/wince/
H A Dcrt.cpp29 char *mid; local
35 mid = lo + (hi - lo)/2;
37 res = (*cmp)(key, mid);
39 hi = mid;
41 lo = mid + size;
43 return mid;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/mm/
H A Dextable.c24 const struct exception_table_entry __attribute__((aligned(8))) *mid; local
27 mid = (last - first) / 2 + first;
28 diff = mid->insn - value;
30 return mid->fixup;
32 first = mid + 1;
34 last = mid - 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dqsort.h43 type *mid = start + ((end-start)>>1);\
45 if(cmp( end, mid) > 0) FFSWAP(type, *start, *mid);\
48 if(cmp(start, mid) > 0) FFSWAP(type, *start, *mid);\
51 if(cmp(mid, end) > 0){ \
52 FFSWAP(type, *mid, *end);\
56 FFSWAP(type, end[-1], *mid);\
69 if(checksort && (mid == left-1 || mid
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Ddevices.c31 return "mid";
36 int *prom_node, int *mid)
41 if (mid) {
42 *mid = prom_getintdefault(nd, cpu_mid_prop(), 0);
44 *mid &= 3;
55 int *prom_node, int *mid)
64 prom_node, mid);
83 int cpu_find_by_instance(int instance, int *prom_node, int *mid) argument
86 prom_node, mid);
101 int cpu_find_by_mid(int mid, in argument
34 check_cpu_node(int nd, int *cur_inst, int (*compare)(int, int, void *), void *compare_arg, int *prom_node, int *mid) argument
54 __cpu_find_by(int (*compare)(int, int, void *), void *compare_arg, int *prom_node, int *mid) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dextable.c77 const struct exception_table_entry *mid; local
79 mid = ((last - first) >> 1) + first;
84 if (mid->insn < value)
85 first = mid + 1;
86 else if (mid->insn > value)
87 last = mid - 1;
89 return mid;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/kernel/
H A Dcore_mcpcia.c90 unsigned long mid = MCPCIA_HOSE2MID(hose->index); local
98 addr, type1, mid));
101 stat0 = *(vuip)MCPCIA_CAP_ERR(mid);
102 *(vuip)MCPCIA_CAP_ERR(mid) = stat0;
104 temp = *(vuip)MCPCIA_CAP_ERR(mid);
105 DBG_CFG(("conf_read: MCPCIA_CAP_ERR(%d) was 0x%x\n", mid, stat0));
111 mcheck_extra(cpu) = mid;
138 unsigned long mid = MCPCIA_HOSE2MID(hose->index); local
146 stat0 = *(vuip)MCPCIA_CAP_ERR(mid);
147 *(vuip)MCPCIA_CAP_ERR(mid)
256 int mid = MCPCIA_HOSE2MID(h); local
292 int mid = MCPCIA_HOSE2MID(h); local
334 mcpcia_pci_clr_err(int mid) argument
345 int mid = MCPCIA_HOSE2MID(hose->index); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/mm/
H A Dextable.c78 const struct exception_table_entry *mid; local
81 mid = (last - first) / 2 + first;
82 mid_value = ex_to_addr(mid);
84 return mid;
86 first = mid+1;
88 last = mid-1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dcpudata_32.h20 int mid; member in struct:__anon10304
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/mm/
H A Dextable.c87 const struct exception_table_entry *mid; local
92 mid = &first[(last - first)/2];
93 mid_ip = (u64) &mid->addr + mid->addr;
96 return mid;
98 first = mid + 1;
100 last = mid - 1;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/bfa/
H A Dplog.c74 bfa_plog_str(struct bfa_plog_s *plog, enum bfa_plog_mid mid, argument
82 lp.mid = mid;
94 bfa_plog_intarr(struct bfa_plog_s *plog, enum bfa_plog_mid mid, argument
106 lp.mid = mid;
122 bfa_plog_fchdr(struct bfa_plog_s *plog, enum bfa_plog_mid mid, argument
137 bfa_plog_intarr(plog, mid, event, misc, ints, 3);
142 bfa_plog_fchdr_and_pl(struct bfa_plog_s *plog, enum bfa_plog_mid mid, argument
158 bfa_plog_intarr(plog, mid, even
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/bfa/include/cs/
H A Dbfa_plog.h43 u8 mid; /* Integer value to be used by all entities * member in struct:bfa_plog_rec_s
151 void bfa_plog_str(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
153 void bfa_plog_intarr(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
156 void bfa_plog_fchdr(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
159 void bfa_plog_fchdr_and_pl(struct bfa_plog_s *plog, enum bfa_plog_mid mid,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ide/
H A Dide-cd_verbose.c278 int lo = 0, mid, hi = ARRAY_SIZE(sense_data_texts); local
287 mid = (lo + hi) / 2;
288 if (sense_data_texts[mid].asc_ascq == key ||
289 sense_data_texts[mid].asc_ascq == (0xff0000|key)) {
290 s = sense_data_texts[mid].text;
292 } else if (sense_data_texts[mid].asc_ascq > key)
293 hi = mid;
295 lo = mid + 1;
310 int lo = 0, mid, hi = ARRAY_SIZE(packet_command_texts); local
314 mid
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/dma/
H A Dintel_mid_dma.c126 struct middma_device *mid = to_middma_device(midc->chan.device); local
128 if (mid->pimr_mask) {
129 pimr = readl(mid->mask_reg + LNW_PERIPHRAL_MASK);
130 pimr |= mid->pimr_mask;
131 writel(pimr, mid->mask_reg + LNW_PERIPHRAL_MASK);
147 struct middma_device *mid = to_middma_device(midc->chan.device); local
149 if (mid->pimr_mask) {
150 pimr = readl(mid->mask_reg + LNW_PERIPHRAL_MASK);
151 pimr &= ~mid->pimr_mask;
152 writel(pimr, mid
247 struct middma_device *mid = to_middma_device(midc->chan.device); local
313 midc_scan_descriptors(struct middma_device *mid, struct intel_mid_dma_chan *midc) argument
429 struct middma_device *mid = to_middma_device(chan->device); local
618 struct middma_device *mid = to_middma_device(chan->device); local
657 struct middma_device *mid = to_middma_device(chan->device); local
701 midc_handle_error(struct middma_device *mid, struct intel_mid_dma_chan *midc) argument
716 struct middma_device *mid = NULL; local
806 struct middma_device *mid = data; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/
H A Dv4l2-int-device.c122 const struct v4l2_int_ioctl_desc *mid; local
124 mid = (last - first) / 2 + first;
126 if (mid->num < cmd)
127 first = mid + 1;
128 else if (mid->num > cmd)
129 last = mid - 1;
131 return mid->func;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/
H A Dutil_unistr.c440 int mid; local
445 mid = (min + max) / 2;
446 that = (precompositions[mid].base << 16) | (precompositions[mid].comb);
448 min = mid + 1;
450 max = mid - 1;
452 return precompositions[mid].replacement;
464 int mid; local
469 mid = (min + max) / 2;
470 that_sp = ((u_int64_t)precompositions_sp[mid]
488 int mid; local
514 int mid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/libsmb/
H A Dsmb_signing.c27 uint16 mid; member in struct:outstanding_packet_lookup
39 uint16 mid, uint32 reply_seq_num)
43 /* Ensure we only add a mid once. */
45 if (t->mid == mid) {
53 t->mid = mid;
59 * This ensures that the *last* send sequence with this mid
61 * This can happen if the mid wraps and one of the early
62 * mid number
38 store_sequence_for_reply(struct outstanding_packet_lookup **list, uint16 mid, uint32 reply_seq_num) argument
72 get_sequence_for_reply(struct outstanding_packet_lookup **list, uint16 mid, uint32 *reply_seq_num) argument
92 set_sequence_can_delete_flag(struct outstanding_packet_lookup **list, uint16 mid, BOOL can_delete_entry) argument
610 client_set_trans_sign_state_on(struct cli_state *cli, uint16 mid) argument
634 client_set_trans_sign_state_off(struct cli_state *cli, uint16 mid) argument
670 uint16 mid; local
825 srv_defer_sign_response(uint16 mid) argument
850 srv_cancel_sign_response(uint16 mid) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Daio.c40 uint16 mid; member in struct:aio_extra
53 uint16 mid)
72 aio_ex->mid = mid;
84 uint16 mid)
109 aio_ex->mid = mid;
129 static struct aio_extra *find_aio_ex(uint16 mid) argument
134 if (mid == p->mid) {
52 create_aio_ex_read(files_struct *fsp, size_t buflen, uint16 mid) argument
81 create_aio_ex_write(files_struct *fsp, size_t inbuflen, size_t outbuflen, uint16 mid) argument
587 uint16 mid = aio_pending_array[i]; local
699 uint16 mid = aiocb_list[i]->aio_sigevent.sigev_value.sival_int; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/
H A Dxfs_dir2_block.c88 int mid=0; /* midpoint for binary srch */ local
296 mid = (low + high) >> 1;
297 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
300 low = mid + 1;
302 high = mid - 1;
304 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
305 mid--;
339 mid++;
340 if (mid)
636 int mid; /* binary search current idx */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/pcap2nbench/
H A Dsmb.hpp44 uint16_t mid; member in struct:smb
H A Dsmb.cpp50 memcpy(&mid, data + 34, 2);
69 << "Mid: " << rhs.mid << std::endl;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/blkid/
H A Dblkid_getsize.c135 const blkid_loff_t mid = (low + high) / 2; local
137 if (valid_offset(fd, mid))
138 low = mid;
140 high = mid;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dbadblocks.c165 int low, high, mid; local
181 mid = (low+high)/2;
182 if (mid == low || mid == high)
184 if (blk == bb->list[mid])
185 return mid;
186 if (blk < bb->list[mid])
187 high = mid;
189 low = mid;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/regex/
H A Dregexec.c586 chr *mid; local
606 mid = shortest(v, d, begin, begin, end, (chr **)NULL,
609 mid = longest(v, d, begin, end, (int *)NULL);
610 if (mid == NULL) {
615 MDEBUG(("tentative midpoint %ld\n", LOFF(mid)));
618 while (longest(v, d2, mid, end, (int *)NULL) != end) {
620 if (mid == stop) {
628 mid = shortest(v, d, begin, mid+1, end, (chr **)NULL,
631 mid
749 chr *mid; local
843 chr *mid; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/scsi/
H A Dscsi_tgt_if.h63 aligned_u64 mid; member in struct:tgt_event::__anon18647::__anon18649
94 aligned_u64 mid; member in struct:tgt_event::__anon18647::__anon18653

Completed in 151 milliseconds

1234567