Searched refs:second (Results 26 - 50 of 177) sorted by relevance

12345678

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dsyscalls.c51 int sys_ipc(uint call, int first, unsigned long second, long third, argument
63 (unsigned)second, NULL);
67 (unsigned)second,
71 ret = sys_semget (first, (int)second, third);
81 ret = sys_semctl(first, (int)second, third, fourth);
86 (size_t)second, third);
100 ret = sys_msgrcv(first, tmp.msgp, (size_t) second,
106 (size_t)second, fifth, third);
111 ret = sys_msgget((key_t)first, (int)second);
114 ret = sys_msgctl(first, (int)second,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/am/
H A Dsecond1.cs9 void second();
16 second();
32 second()
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dchecksrc.pl171 my $second = length($1);
173 if($expect != $second) {
174 my $diff = $second - $first;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/qla2xxx/
H A Dqla_inline.h23 volatile uint16_t second; local
29 second = RD_REG_WORD(addr);
30 } while (first != second);
43 * @ne_addr: Normalized second DMA address
44 * @ne_len: Normalized second DMA length
62 * Compute start of second DMA segment:
69 * Compute length of second DMA segment:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dintersil.h31 unsigned char second; member in struct:intersil_dt
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dtriostr.c388 @param second Second string.
395 TRIO_ARGS2((first, second),
397 TRIO_CONST char *second)
400 assert(second);
402 if ((first != NULL) && (second != NULL))
405 return (0 == strcasecmp(first, second));
407 while ((*first != NIL) && (*second != NIL))
409 if (trio_to_upper(*first) != trio_to_upper(*second))
414 second++;
416 return ((*first == NIL) && (*second
394 trio_equal(first, second), TRIO_CONST char *first, TRIO_CONST char *second argument
433 trio_equal_case(first, second), TRIO_CONST char *first, TRIO_CONST char *second argument
461 trio_equal_case_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
489 trio_equal_locale(first, second), TRIO_CONST char *first, TRIO_CONST char *second argument
516 trio_equal_max(first, max, second), TRIO_CONST char *first, size_t max, TRIO_CONST char *second argument
[all...]
H A Dtriostr.h49 TRIO_STRING_PUBLIC int trio_equal TRIO_PROTO((const char *first, const char *second));
50 TRIO_STRING_PUBLIC int trio_equal_case TRIO_PROTO((const char *first, const char *second));
51 TRIO_STRING_PUBLIC int trio_equal_locale TRIO_PROTO((const char *first, const char *second));
52 TRIO_STRING_PUBLIC int trio_equal_max TRIO_PROTO((const char *first, size_t max, const char *second));
67 TRIO_STRING_PUBLIC int trio_equal_case_max TRIO_PROTO((const char *first, size_t max, const char *second));
116 TRIO_STRING_PUBLIC int trio_string_equal_max TRIO_PROTO((trio_string_t *self, size_t max, trio_string_t *second));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ide/pci/
H A Dopti621.c53 * the second drive, compute_pios use ide_get_best_pio_mode
55 * If you then set the second drive to another PIO, the old value
251 pio_clocks_t first, second; local
262 compute_clocks(pio2, &second);
265 ax = (first.address_time < second.address_time) ? second.address_time : first.address_time;
270 cycle2 = ((second.data_time-1)<<4) | (second.recovery_time-2);
280 hwif->name, ax, second.data_time,
281 second
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/sun3/
H A Dintersil.c52 todintersil->second = t->tm_sec;
62 t->tm_sec = todintersil->second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dsyscall.c311 asmlinkage int sys_ipc (unsigned int call, int first, int second, argument
322 second, NULL);
325 second,
328 return sys_semget (first, second, third);
335 return sys_semctl (first, second, third, fourth);
340 second, third);
352 return sys_msgrcv (first, tmp.msgp, second,
358 second, fifth, third);
361 return sys_msgget ((key_t) first, second);
363 return sys_msgctl (first, second,
[all...]
H A Dlinux32.c317 sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth) argument
327 err = sys_semtimedop(first, compat_ptr(ptr), second, NULL);
330 err = compat_sys_semtimedop(first, compat_ptr(ptr), second,
334 err = sys_semget(first, second, third);
337 err = compat_sys_semctl(first, second, third, compat_ptr(ptr));
340 err = compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
343 err = compat_sys_msgrcv(first, second, fifth, third,
347 err = sys_msgget((key_t) first, second);
350 err = compat_sys_msgctl(first, second, compat_ptr(ptr));
353 err = compat_sys_shmat(first, second, thir
376 sys32_ipc(u32 call, int first, int second, int third, u32 ptr, u32 fifth) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dsys_sparc.c113 asmlinkage int sys_ipc (uint call, int first, int second, int third, void __user *ptr, long fifth) argument
123 err = sys_semtimedop (first, (struct sembuf __user *)ptr, second, NULL);
126 err = sys_semtimedop (first, (struct sembuf __user *)ptr, second, (const struct timespec __user *) fifth);
129 err = sys_semget (first, second, third);
140 err = sys_semctl (first, second, third, fourth);
151 second, third);
163 err = sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
169 second, fifth, third);
173 err = sys_msgget ((key_t) first, second);
176 err = sys_msgctl (first, second, (struc
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Dsys_m68k.c139 asmlinkage int sys_ipc (uint call, int first, int second, argument
150 return sys_semop (first, ptr, second);
152 return sys_semget (first, second, third);
159 return sys_semctl (first, second, third, fourth);
167 return sys_msgsnd (first, ptr, second, third);
176 return sys_msgrcv (first, tmp.msgp, second,
181 second, fifth, third);
184 return sys_msgget ((key_t) first, second);
186 return sys_msgctl (first, second, ptr);
196 ret = do_shmat (first, ptr, second,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/ipc/
H A Dcompat.c236 long compat_sys_semctl(int first, int second, int third, void __user *uptr) argument
264 err = sys_semctl(first, second, third, fourth);
271 err = sys_semctl(first, second, third, fourth);
297 err = sys_semctl(first, second, third, fourth);
307 long compat_sys_msgsnd(int first, int second, int third, void __user *uptr) argument
314 if (second < 0)
320 return do_msgsnd(first, type, up->mtext, second, third);
323 long compat_sys_msgrcv(int first, int second, int msgtyp, int third, argument
332 if (second < 0)
347 err = do_msgrcv(first, &type, up->mtext, second, msgty
418 compat_sys_msgctl(int first, int second, void __user *uptr) argument
470 compat_sys_shmat(int first, int second, compat_uptr_t third, int version, void __user *uptr) argument
590 compat_sys_shmctl(int first, int second, void __user *uptr) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dxgettext-718 /* second comment */
33 #. second comment
H A Dmsgcmp-311 two=second
H A Dmsgunfmt-properties-124 two=second
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dcompat.h169 long compat_sys_semctl(int first, int second, int third, void __user *uptr);
170 long compat_sys_msgsnd(int first, int second, int third, void __user *uptr);
171 long compat_sys_msgrcv(int first, int second, int msgtyp, int third,
173 long compat_sys_msgctl(int first, int second, void __user *uptr);
174 long compat_sys_shmat(int first, int second, compat_uptr_t third, int version,
176 long compat_sys_shmctl(int first, int second, void __user *uptr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dmsp3400-kthreads.c38 int main, second; member in struct:__anon5045
353 if (state->main == state->second) {
362 state->second / 910000, (state->second/910) % 1000);
365 state->second / 910000, (state->second / 910) % 1000);
366 if (state->mode == MSP_MODE_FM_TERRA && state->main != state->second) {
368 state->second / 910000, (state->second / 910) % 1000);
527 /* carrier detect pass #2 -- second (stere
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dtestss72 echo second generated request is invalid
134 echo "sign second proxy certificate request with the first proxy certificate via 'x509'"
137 echo "error using 'x509' to sign a second proxy certificate request"
157 echo The second generated proxy certificate is $P2cert
158 echo The second generated proxy private key is $P2key
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Dgetpart.pm174 my $second = join("", @$secondref);
183 if($first ne $second) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Do_time.c170 short year, month, day, hour, minute, second, member in struct:vms_vectime
193 result->tm_sec = time_values.second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_time.c90 unsigned int month = 1, day = 1, hour = 0, minute = 0, second = 0; local
132 second = strtoul(s, &e, 10);
133 if (*e != '\0' || second > 59)
142 tm.tm_sec = second;
164 unsigned int hour, minute, second = 0; local
179 second = strtoul(s, &e, 10);
180 if (*e != '\0' || second > 59)
184 return 60 * 60 * hour + 60 * minute + second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Do_time.c170 short year, month, day, hour, minute, second, member in struct:vms_vectime
193 result->tm_sec = time_values.second;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/lib/
H A Dnand_init.S15 ## bootrom will discard every second byte. This is solved by inserting
16 ## zeroes in every second byte in the first erase block.

Completed in 332 milliseconds

12345678