Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 25 of 54) sorted by relevance

123

/reactos/drivers/network/tcpip/lwip/src/core/
H A Dinet_chksum.c106 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum()
108 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum()
290 acc = FOLD_U32T(acc); in inet_cksum_pseudo_base()
291 acc = FOLD_U32T(acc); in inet_cksum_pseudo_base()
323 acc = FOLD_U32T(acc); in inet_chksum_pseudo()
324 acc = FOLD_U32T(acc); in inet_chksum_pseudo()
359 acc = FOLD_U32T(acc); in ip6_chksum_pseudo()
360 acc = FOLD_U32T(acc); in ip6_chksum_pseudo()
436 acc = FOLD_U32T(acc); in inet_cksum_pseudo_partial_base()
437 acc = FOLD_U32T(acc); in inet_cksum_pseudo_partial_base()
[all …]
H A Dudp.c832 u32_t acc; in udp_sendto_if_src_chksum() local
833 acc = udphdr->chksum + (u16_t)~(chksum); in udp_sendto_if_src_chksum()
834 udphdr->chksum = FOLD_U32T(acc); in udp_sendto_if_src_chksum()
859 u32_t acc; in udp_sendto_if_src_chksum() local
862 acc = udpchksum + (u16_t)~(chksum); in udp_sendto_if_src_chksum()
863 udpchksum = FOLD_U32T(acc); in udp_sendto_if_src_chksum()
H A Dpbuf.c1368 u32_t acc; in pbuf_fill_chksum() local
1385 acc = *chksum; in pbuf_fill_chksum()
1386 acc += copy_chksum; in pbuf_fill_chksum()
1387 *chksum = FOLD_U32T(acc); in pbuf_fill_chksum()
/reactos/dll/opengl/mesa/
H A Daccum.c148 *acc += ival; acc++; /* red */ in gl_Accum()
149 *acc += ival; acc++; /* green */ in gl_Accum()
150 *acc += ival; acc++; /* blue */ in gl_Accum()
151 *acc += ival; acc++; /* alpha */ in gl_Accum()
166 *acc = (GLaccum) ( (GLfloat) *acc * value ); acc++; /*r*/ in gl_Accum()
167 *acc = (GLaccum) ( (GLfloat) *acc * value ); acc++; /*g*/ in gl_Accum()
168 *acc = (GLaccum) ( (GLfloat) *acc * value ); acc++; /*g*/ in gl_Accum()
169 *acc = (GLaccum) ( (GLfloat) *acc * value ); acc++; /*a*/ in gl_Accum()
196 *acc += (GLaccum) ( (GLfloat) red[i] * rscale ); acc++; in gl_Accum()
197 *acc += (GLaccum) ( (GLfloat) green[i] * gscale ); acc++; in gl_Accum()
[all …]
/reactos/sdk/lib/crt/string/
H A Dstrtoull.c8 unsigned long long acc; in strtoull() local
37 for (acc = 0, any = 0;; c = *s++) in strtoull()
47 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoull()
51 acc *= base; in strtoull()
52 acc += c; in strtoull()
57 acc = ULLONG_MAX; in strtoull()
63 acc = 0-acc; in strtoull()
66 return acc; in strtoull()
H A Dstrtol.c11 unsigned long acc; in strtol() local
61 for (acc = 0, any = 0;; c = *s++) in strtol()
71 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtol()
76 acc *= base; in strtol()
77 acc += c; in strtol()
82 acc = neg ? LONG_MIN : LONG_MAX; in strtol()
88 acc = 0-acc; in strtol()
91 return acc; in strtol()
H A Dwcstoul.c17 unsigned long acc; in wcstoul() local
46 for (acc = 0, any = 0;; c = *s++) in wcstoul()
56 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in wcstoul()
60 acc *= base; in wcstoul()
61 acc += c; in wcstoul()
66 acc = ULONG_MAX; in wcstoul()
69 acc = 0-acc; in wcstoul()
72 return acc; in wcstoul()
H A Dwcstol.c20 long acc; in wcstol() local
70 for (acc = 0, any = 0;; c = *s++) in wcstol()
80 if (any < 0 || (unsigned long)acc > cutoff || (acc == cutoff && c > cutlim)) in wcstol()
85 acc *= base; in wcstol()
86 acc += c; in wcstol()
91 acc = neg ? LONG_MIN : LONG_MAX; in wcstol()
94 acc = 0-acc; in wcstol()
97 return acc; in wcstol()
H A Datoi64.c21 __int64 acc = 0; in _atoi64() local
39 acc = 10 * acc + ((int)*s - '0'); in _atoi64()
44 acc *= -1; in _atoi64()
45 return acc; in _atoi64()
/reactos/modules/rostests/winetests/oleacc/
H A Dmain.c658 if(acc == &Accessible) { in test_AccessibleChildren()
664 if(acc == &Accessible) { in test_AccessibleChildren()
670 if(acc == &Accessible) { in test_AccessibleChildren()
676 if(acc == &Accessible) { in test_AccessibleChildren()
684 if(acc == &Accessible) { in test_AccessibleChildren()
691 if(acc == &Accessible) { in test_AccessibleChildren()
704 if(acc == &Accessible) { in test_AccessibleChildren()
711 if(acc == &Accessible) { in test_AccessibleChildren()
732 IAccessible *acc; in test_default_client_accessible_object() local
810 test_AccessibleChildren(acc); in test_default_client_accessible_object()
[all …]
/reactos/dll/3rdparty/mbedtls/
H A Dpoly1305.c152 acc0 = ctx->acc[0]; in poly1305_process()
153 acc1 = ctx->acc[1]; in poly1305_process()
154 acc2 = ctx->acc[2]; in poly1305_process()
155 acc3 = ctx->acc[3]; in poly1305_process()
156 acc4 = ctx->acc[4]; in poly1305_process()
225 ctx->acc[0] = acc0; in poly1305_process()
341 ctx->acc[0] = 0U; in mbedtls_poly1305_starts()
342 ctx->acc[1] = 0U; in mbedtls_poly1305_starts()
343 ctx->acc[2] = 0U; in mbedtls_poly1305_starts()
344 ctx->acc[3] = 0U; in mbedtls_poly1305_starts()
[all …]
H A Dentropy.c688 unsigned char acc[MBEDTLS_ENTROPY_BLOCK_SIZE] = { 0 }; in mbedtls_entropy_self_test() local
724 acc[j] |= buf[j]; in mbedtls_entropy_self_test()
729 if( acc[j] == 0 ) in mbedtls_entropy_self_test()
/reactos/modules/rostests/winetests/mmdevapi/
H A Dcapture.c85 IAudioCaptureClient *acc; in test_capture() local
133 hr = IAudioCaptureClient_ReleaseBuffer(acc, frames); in test_capture()
147 hr = IAudioCaptureClient_GetNextPacketSize(acc, NULL); in test_capture()
196 hr = IAudioCaptureClient_ReleaseBuffer(acc, frames); in test_capture()
199 hr = IAudioCaptureClient_ReleaseBuffer(acc, 0); in test_capture()
233 hr = IAudioCaptureClient_ReleaseBuffer(acc, 0); in test_capture()
275 hr = IAudioCaptureClient_ReleaseBuffer(acc, 1); in test_capture()
282 hr = IAudioCaptureClient_ReleaseBuffer(acc, frames); in test_capture()
324 hr = IAudioCaptureClient_ReleaseBuffer(acc, frames); in test_capture()
422 IAudioCaptureClient_ReleaseBuffer(acc, frames); in test_capture()
[all …]
/reactos/base/applications/cacls/lang/
H A Dca-ES.rc5 IDS_HELP "Mostra o modifica la llista de control d'accés (ACLs) dels fitxers\n\n\
12 /C Continua en cas d'error d'accés.\n\
13 /G user:perm Assegura els drets d'accés especificats per al usuari.\n\
18 /R usuari Revoca els drets d'accés especificats per al usuari(només vàlid amb /E).\n\
19 /P user:perm Canvia els drets d'accés especificats per al usuari.\n\
25 /D usuari Denega els drets d'accés especificats per al usuari.\n\
45 IDS_SPECIAL_ACCESS "(accés especial:)"
H A Dfr-FR.rc5 IDS_HELP "Affiche ou change la liste des contrôles d'accès (ACLs) de fichiers\n\n\
12 /C Continuer en cas de refus d'accès.\n\
13 /G user:perm Accorder des droits d'accès à l'utilisateur spécifié.\n\
18 /R user Supprime les droits d'accès de l'utilisateur spécifié\n\
20 /P user:perm Remplace les droits d'accès de l'utilisateur spécifié.\n\
26 /D user Interdit l'accès à l'utilisateur spécifié.\n\
/reactos/dll/win32/kernel32/include/
H A Dbase_x.h86 #define ConvertOpenWin32AnsiObjectApiToUnicodeApi(obj, acc, inh, name) \ argument
94 if (NT_SUCCESS(Status)) return Open##obj##W(acc, inh, UnicodeCache->Buffer);\
143 #define OpenNtObjectFromWin32Api(ntobj, acc, inh, name) \ argument
156 Status = NtOpen##ntobj(&Handle, acc, ObjectAttributes); \
/reactos/dll/win32/oleacc/
H A Dmain.c372 HRESULT WINAPI WindowFromAccessibleObject(IAccessible *acc, HWND *phwnd) in WindowFromAccessibleObject() argument
378 TRACE("%p %p\n", acc, phwnd); in WindowFromAccessibleObject()
380 IAccessible_AddRef(acc); in WindowFromAccessibleObject()
382 hres = IAccessible_QueryInterface(acc, &IID_IOleWindow, (void**)&ow); in WindowFromAccessibleObject()
386 IAccessible_Release(acc); in WindowFromAccessibleObject()
390 hres = IAccessible_get_accParent(acc, &parent); in WindowFromAccessibleObject()
391 IAccessible_Release(acc); in WindowFromAccessibleObject()
399 hres = IDispatch_QueryInterface(parent, &IID_IAccessible, (void**)&acc); in WindowFromAccessibleObject()
/reactos/drivers/filesystems/btrfs/
H A Dxxhash.c470 static U64 XXH64_round(U64 acc, U64 input) in XXH64_round() argument
472 acc += input * PRIME64_2; in XXH64_round()
473 acc = XXH_rotl64(acc, 31); in XXH64_round()
474 acc *= PRIME64_1; in XXH64_round()
475 return acc; in XXH64_round()
478 static U64 XXH64_mergeRound(U64 acc, U64 val) in XXH64_mergeRound() argument
481 acc ^= val; in XXH64_mergeRound()
482 acc = acc * PRIME64_1 + PRIME64_4; in XXH64_mergeRound()
483 return acc; in XXH64_mergeRound()
/reactos/dll/directx/wine/dsound/
H A Dmixer.c103 DWORD64 acc, freqAcc; in DSOUND_secpos_to_bufpos() local
108 acc = (framelen << DSOUND_FREQSHIFT) + (freqAdjust - 1 - freqAcc); in DSOUND_secpos_to_bufpos()
109 acc /= freqAdjust; in DSOUND_secpos_to_bufpos()
112 DWORD64 oshot = acc * freqAdjust + freqAcc; in DSOUND_secpos_to_bufpos()
118 return (DWORD)acc * dsb->device->pwfx->nBlockAlign; in DSOUND_secpos_to_bufpos()
129 DWORD64 acc; in DSOUND_bufpos_to_secpos() local
132 acc = framelen * (DWORD64)dsb->freqAdjust + (DWORD64)dsb->freqAccNext; in DSOUND_bufpos_to_secpos()
133 acc = acc >> DSOUND_FREQSHIFT; in DSOUND_bufpos_to_secpos()
134 pos = (DWORD)acc * iAdv; in DSOUND_bufpos_to_secpos()
/reactos/sdk/include/reactos/libs/mbedtls/
H A Dpoly1305.h91 uint32_t acc[5]; /** The accumulator number. */ member
/reactos/base/system/subst/lang/
H A Dfr-FR.rc8 IDS_PATH_NOT_FOUND "Chemin d'accès introuvable - %s\n"
/reactos/base/shell/explorer/lang/
H A Dfr-FR.rc92 …LTEXT "Ce style de menu vous donne un accès rapide à vos dossiers, programmes favoris et à l'outil…
144 …LTEXT "Pour vider la liste des documents, programmes et sites web récemment accédés, cl…
176 …LTEXT "&Sélectionnez cette option pour fournir un accès rapide aux documents que vous a…
/reactos/dll/cpl/usrmgr/lang/
H A Dfr-FR.rc74 LTEXT "Chemin d'accès au profil :", -1, 16, 22, 55, 8
79 AUTORADIOBUTTON "Chemin d'accès local :", IDC_USER_PROFILE_LOCAL, 16, 83, 60, 10
/reactos/base/applications/dxdiag/lang/
H A Dfr-FR.rc130 RTEXT "Son matériel\nNiveau d'accélération :", IDC_STATIC, 10, 125, 90, 20, WS_DISABLED
244 IDS_D3DTEST_D3Dx "Ce test va utiliser l'interface Direct3D %u accélérée matériellement."
253 …IDS_DDDISABLE_MSG "Ceci va désactiver toute accélération graphique matérielle pour DirectDraw sur …
/reactos/dll/win32/winmm/lang/
H A Dwinmm_Fr.rc72 MCIERR_FILE_NOT_FOUND, "Le fichier spécifié est introuvable. Vérifiez que le chemin d'accès et le…
102 MCIERR_GET_CD, "Impossible d'accéder au fichier ou au périphérique MCI spécifié. Essayez de chan…
103 MCIERR_SET_CD, "Impossible d'accéder au fichier ou au périphérique MCI spécifié, car l'applicati…
104 MCIERR_SET_DRIVE, "Impossible d'accéder au fichier ou au périphérique MCI spécifié, car l'applica…

123